*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #1a0030;
    color: #b8b0c8;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 100vh;
}

/* Hero Section */
#hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #1a0030;
    padding: 4rem 2rem;
}

.lens-flare {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.flare-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 20%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 60%);
    animation: flare-pulse 4s ease-in-out infinite;
}

.flare-2 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 15%;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.2), transparent 60%);
    animation: flare-pulse 5s ease-in-out infinite 0.5s;
}

.flare-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 40%;
    background: radial-gradient(circle, rgba(255, 0, 153, 0.15), transparent 60%);
    animation: flare-pulse 6s ease-in-out infinite 1s;
}

@keyframes flare-pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

#chrome-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #c0c0c0 25%, #808080 50%, #c0c0c0 75%, #ffffff 100%);
    background-size: 100% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #00ccff;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}

/* Reviews Grid */
#reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    border-radius: 20px;
    padding: 2px;
    position: relative;
    background: linear-gradient(#2a0a4a, #2a0a4a), linear-gradient(135deg, #ff0099, #00ccff, #ff0099);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
    animation: iridescent-shimmer 6s ease infinite;
}

@keyframes iridescent-shimmer {
    0% {
        background: linear-gradient(#2a0a4a, #2a0a4a), linear-gradient(135deg, #ff0099, #00ccff, #ff0099);
    }
    50% {
        background: linear-gradient(#2a0a4a, #2a0a4a), linear-gradient(315deg, #ff0099, #00ccff, #ff0099);
    }
    100% {
        background: linear-gradient(#2a0a4a, #2a0a4a), linear-gradient(135deg, #ff0099, #00ccff, #ff0099);
    }
}

.card-inner {
    background: #2a0a4a;
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.chrome-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #c0c0c0, #808080, #c0c0c0, #ffffff);
    color: #1a0030;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.card-price {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffd700;
    margin-bottom: 0.75rem;
}

.star-row {
    margin-bottom: 1rem;
}

.star {
    font-size: 1.3rem;
    color: #808080;
    margin-right: 0.2rem;
}

.star.filled {
    color: #ffd700;
}

.card-verdict {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.verdict-worth {
    color: #00ccff;
}

.verdict-not {
    color: #ff0099;
}

.verdict-mixed {
    color: #ffd700;
}

.card-summary {
    font-size: 0.9rem;
    color: #b8b0c8;
    line-height: 1.5;
    flex-grow: 1;
}

/* Footer */
#site-footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(192, 192, 192, 0.15);
    background: #1a0030;
    margin-top: 2rem;
}

.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    background: linear-gradient(180deg, #ffffff, #c0c0c0, #808080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    color: #808080;
    margin-top: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    #reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    #hero {
        min-height: 50vh;
        padding: 3rem 1rem;
    }

    #chrome-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    #reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .review-card {
        padding: 1px;
    }

    .card-inner {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-price {
        font-size: 0.95rem;
    }

    .chrome-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .star {
        font-size: 1.1rem;
    }

    .card-summary {
        font-size: 0.85rem;
    }

    #site-footer {
        padding: 2rem 1rem;
    }

    .footer-brand {
        font-size: 1.1rem;
    }

    .footer-tagline {
        font-size: 0.75rem;
    }
}
