/* Speed Test Section */
.speed-test {
    padding: 6rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 25%, #a855f7 50%, #f97316 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.speed-test::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="150" cy="300" r="100" fill="url(%23a)"/><circle cx="850" cy="200" r="120" fill="url(%23a)"/><circle cx="500" cy="600" r="90" fill="url(%23a)"/><circle cx="300" cy="100" r="80" fill="url(%23a)"/></svg>');
    opacity: 0.4;
}

.speed-test .container {
    position: relative;
    z-index: 2;
}

.speed-test h2 {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.test-container {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
}

.test-container .btn {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.result-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.result-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.result-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.result-unit {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}
