/* HKS Football 2026 - Premium Redesign */
:root {
    /* Color Palette - Dark Premium Sport */
    --bg-dark: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --bg-glass: rgba(15, 23, 42, 0.85);

    --primary: #22c55e;
    --primary-glow: rgba(34, 197, 94, 0.5);
    --primary-dark: #15803d;

    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    --accent: #3b82f6;
    /* Secondary accent color */

    /* Spacing & Layout */
    --container-max: 1280px;
    --header-height: 80px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;

    /* Effects */
    --shadow-glow: 0 0 20px var(--primary-glow);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --backdrop-blur: blur(16px);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 20%);
    min-height: 100vh;
}

/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--bg-glass);
    backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
    /* Ensure minimum separation */
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    flex-shrink: 0;
    /* Prevent logo shrinking */
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.1rem;
        /* Smaller font for mobile */
    }
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-item-mobile-auth {
    display: none;
}

.auth-section {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    /* Prevent buttons shrinking */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 0.95rem;
    white-space: nowrap;
    /* Prevent button text wrap */
}

@media (max-width: 480px) {
    .btn {
        padding: 0.5rem 0.8rem;
        /* Smaller padding on mobile */
        font-size: 0.85rem;
    }
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Abstract Background Shapes */
.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    opacity: 0.4;
    filter: blur(80px);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    /* Smaller minimum size for mobile */
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #94a3b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 0.8s ease-out;
}

.legal-section {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 100vh;
}

.legal-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    margin-top: 2rem;
    color: var(--text-secondary);
}

.legal-card h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-card h2 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-card p,
.legal-card ul {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-card ul {
    padding-left: 1.5rem;
}

.legal-card a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-card a:hover {
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.4);
}

.powered-by-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    backdrop-filter: blur(4px);
    animation: fadeUp 0.8s ease-out;
}

.powered-by-badge strong {
    color: var(--accent);
    font-weight: 600;
}

.nav-item-mobile-auth .btn {
    width: 100%;
    justify-content: center;
}

/* Hero Teams Highlight */
.hero-teams {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeUp 0.8s ease-out 0.2s backwards;
}

.hero-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-team-label {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.vs-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.5;
    margin-top: -2rem;
    /* Align better with center of logos */
}

/* Ensure stacks on mobile but row on desktop */
@media (max-width: 768px) {
    .hero-teams {
        flex-direction: column;
        gap: 1.5rem;
        /* More breathing room between teams */
    }

    .team-name-hero {
        text-align: center !important;
    }

    .vs-text {
        margin: 0.5rem 0;
        font-size: 1.25rem;
        /* Larger VS text */
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
        /* Reduce top padding on very small screens */
    }

    .hero-title {
        font-size: 2rem;
        /* Even smaller for very narrow screens */
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    animation: fadeUp 0.8s ease-out 0.3s backwards;
}

/* Countdown */
.countdown-section {
    margin-top: 3rem;
    animation: fadeUp 0.8s ease-out 0.4s backwards;
}

.countdown-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--bg-card);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Match Section */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-divider {
    height: 4px;
    width: 60px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

.match-section,
.tickets-section {
    padding: 100px 0;
}

.match-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.match-header {
    margin-bottom: 3rem;
}

.match-badge {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.teams-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.team {
    flex: 1;
    min-width: 150px;
}

.team-logo {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.team-logo:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

.team-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.match-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.vs-badge {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.5;
}

.match-details p {
    color: var(--text-muted);
    margin: 0.25rem 0;
}

.match-details .match-date {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Ticket Card */
.ticket-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

/* Decorative line */
.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.ticket-header {
    text-align: center;
    margin-bottom: 2rem;
}

.ticket-title {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.ticket-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.info-value {
    font-weight: 600;
}

.ticket-pricing {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0;
}

.availability-warning {
    color: #ef4444;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #020617;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.social-links,
.legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link,
.legal-link,
.contact-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.social-link:hover,
.legal-link:hover,
.contact-link:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

/* User Menu & Modal - Minimal Styles needed for functionality */
.user-menu {
    position: relative;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0.5rem 0.25rem 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    min-width: 180px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-main);
    transition: background 0.2s;
    text-align: left;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Modal Overlay & Base */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #1e293b;
    padding: 2rem;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: white;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.form-group {
    margin-bottom: 0.5rem;
    width: 100%;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    transition: all 0.3s;
}

.mobile-menu-btn span:nth-child(1) {
    top: 8px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 15px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 22px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 15px;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 15px;
}

.mobile-only-auth {
    display: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .header {
        height: 60px;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: auto;
        /* Push to the right */
        z-index: 1002;
        /* Ensure above everything else */
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: #0f172a;
        /* Solid background for legibility */
        overflow: hidden;
        transition: height 0.3s ease, padding 0.3s ease;
        border-bottom: 0 solid rgba(255, 255, 255, 0.05);
        z-index: 1000;
        padding: 0;
        z-index: 999;
        /* Below the hamburger button */
    }

    .nav.show {
        height: 100vh;
        padding: 80px 1.5rem 2rem;
        /* Add horizontal padding */
        opacity: 1;
        pointer-events: all;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* Center items vertically */
        height: 100%;
        /* Take full height of nav container */
        gap: 2rem;
        font-size: 1.5rem;
        /* Larger font for touch targets */
    }

    .nav.show {
        height: 100vh;
        /* Full screen menu */
        padding: 80px 0 2rem;
        /* Padding for header height */
        border-bottom-width: 1px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        font-size: 1.25rem;
    }

    .auth-section {
        display: none;
    }

    .nav-item-mobile-auth {
        display: block;
        margin-top: 1rem;
    }

    /* Fix user menu on mobile if logged in */
    .user-menu {
        margin-right: 3rem;
        /* Space for burger menu */
    }

    .teams-container {
        gap: 2rem;
    }

    .vs-badge {
        margin: 1rem 0;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }

    .countdown-number {
        font-size: 1.75rem;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Enhanced Visual Elements */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    opacity: 0.4;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    bottom: 50px;
    left: -100px;
    opacity: 0.3;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite reverse;
    z-index: -1;
}

/* Card Hover 3D Lift */
.match-card,
.ticket-card,
.countdown-item {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.match-card:hover,
.ticket-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(34, 197, 94, 0.2);
    /* Green glow hint */
    border-color: rgba(34, 197, 94, 0.3);
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* Button Shine Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
}

.btn-primary:hover::after {
    animation: shine 0.75s;
}

/* VS Badge Pulse */
.vs-badge {
    position: relative;
    z-index: 1;
}

.vs-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
    filter: blur(15px);
    animation: pulse-glow 3s infinite;
}

/* Scroll Reveal Base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}