:root {
        --primary-gold: #d4af37;
        --secondary-gold: #f4d03f;
        --dark-gold: #b8941f;
        --primary-dark: #1a1a2e;
        --secondary-dark: #16213e;
        --accent-blue: #0f3460;
        --glass-bg: rgba(255, 255, 255, 0.1);
        --glass-border: rgba(255, 255, 255, 0.2);
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Vazirmatn', sans-serif;
        background: var(--primary-dark);
        color: #fff;
        overflow-x: hidden;
        line-height: 1.6;
    }
    
    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: var(--primary-dark);
    }
    
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--primary-gold), var(--secondary-gold));
        border-radius: 4px;
    }
    
    /* Preloader */
    .preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--primary-dark);
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .preloader-logo {
        font-size: 3rem;
        font-weight: 800;
        background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: pulse 2s infinite;
    }
    
    .preloader-text {
        margin-top: 1rem;
        font-size: 1.2rem;
        opacity: 0.7;
        animation: fadeInOut 2s infinite;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
    
    @keyframes fadeInOut {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 1; }
    }
    
    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        z-index: 1000;
        padding: 1rem 2rem;
        transition: all 0.3s ease;
    }
    
    .navbar.scrolled {
        background: rgba(26, 26, 46, 0.98);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .nav-logo {
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-decoration: none;
    }
    
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
    }
    
    .nav-link {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        padding: 0.5rem 1rem;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .nav-link:hover::before {
        width: 100%;
    }
    
    .nav-link:hover {
        color: var(--primary-gold);
    }
    
    #navbar.force-repaint {
    transform: translateZ(0);
}

#navbar {
    position: sticky;
    top: 0;
    z-index: 100;
}



    /* Hero Section */
    .hero {
        /* height: 100vh; */
        min-height: 100dvh; /* یا max-height: 100svh یا height: 100lvh */
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--accent-blue) 100%);
        overflow: hidden;
    }
    
    .hero::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="grad1" cx="50%" cy="50%"><stop offset="0%" style="stop-color:rgba(212,175,55,0.1)"/><stop offset="100%" style="stop-color:rgba(212,175,55,0)"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23grad1)"/><circle cx="800" cy="800" r="400" fill="url(%23grad1)"/></svg>');
        animation: float 20s infinite ease-in-out;
    }
    
    @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        33% { transform: translate(-30px, -30px) rotate(120deg); }
        66% { transform: translate(30px, -30px) rotate(240deg); }
    }
    
    .hero-content {
        text-align: center;
        z-index: 2;
        position: relative;
        max-width: 1000px;
        padding: 0 2rem;
    }
    
    .hero-badge {
        display: inline-block;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        padding: 0.7rem 2rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 2rem;
        animation: slideDown 1s ease-out;
    }
    
    .hero-title {
        font-size: clamp(3rem, 8vw, 7rem);
        font-weight: 900;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        animation: slideUp 1s ease-out 0.3s both;
    }
    
    .hero-title .gold-text {
        background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-subtitle {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        opacity: 0.8;
        margin-bottom: 3rem;
        font-weight: 300;
        animation: slideUp 1s ease-out 0.6s both;
    }
    
    .hero-cta {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: slideUp 1s ease-out 0.9s both;
    }
    
    .cta-btn {
        padding: 1rem 2.5rem;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        position: relative;
        overflow: hidden;
    }
    
    .cta-primary {
        background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
        color: var(--primary-dark);
    }
    
    .cta-secondary {
        background: transparent;
        color: #fff;
        border: 2px solid var(--glass-border);
        backdrop-filter: blur(20px);
    }
    
    .cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.5s ease;
    }
    
    .cta-btn:hover::before {
        left: 100%;
    }
    
    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-50px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes slideUp {
        from { opacity: 0; transform: translateY(50px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    /* Floating Elements */
    .floating-shapes {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }
    
    .shape {
        position: absolute;
        opacity: 0.1;
        animation: floatShapes 15s infinite linear;
    }
    
    .shape:nth-child(1) {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }
    
    .shape:nth-child(2) {
        top: 60%;
        right: 10%;
        animation-delay: 5s;
    }
    
    .shape:nth-child(3) {
        bottom: 20%;
        left: 20%;
        animation-delay: 10s;
    }
    
    @keyframes floatShapes {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-50px) rotate(180deg); }
    }
    
    /* About Section */
    .about {
        padding: 8rem 2rem;
        background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
        position: relative;
    }
    
    .about::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 100 100"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.05)"/></svg>') repeat;
    }
    
    .container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 5rem;
    }
    
    .section-badge {
        display: inline-block;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        padding: 0.5rem 1.5rem;
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
        color: var(--primary-gold);
    }
    
    .section-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
        opacity: 0.7;
        max-width: 600px;
        margin: 0 auto;
        font-weight: 300;
    }
    
    .about-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
        margin-top: 4rem;
    }
    
    .about-card {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 30px;
        padding: 3rem;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
        cursor: pointer;
    }
    
    .about-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    }
    
    .about-card::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
        border-radius: 50%;
        transition: all 0.6s ease;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
    
    .about-card:hover::after {
        width: 400px;
        height: 400px;
    }
    
    .about-card:hover {
        transform: translateY(-20px) scale(1.02);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    }
    
    .card-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }
    
    .card-title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #fff;
    }
    
    .card-description {
        font-size: 1.1rem;
        opacity: 0.8;
        line-height: 1.8;
        font-weight: 300;
    }
    
    /* Stats Section */
    .stats {
        padding: 6rem 2rem;
        background: var(--accent-blue);
        position: relative;
        overflow: hidden;
    }
    
    .stats::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 30%, rgba(212,175,55,0.05) 50%, transparent 70%);
        animation: shimmer 3s infinite;
    }
    
    @keyframes shimmer {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        position: relative;
        z-index: 2;
    }
    
    .stat-card {
        text-align: center;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 25px;
        padding: 3rem 2rem;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }
    
    .stat-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, var(--primary-gold), transparent);
        animation: rotate 3s linear infinite;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .stat-card:hover::before {
        opacity: 0.1;
    }
    
    @keyframes rotate {
        100% { transform: rotate(360deg); }
    }
    
    .stat-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
    }
    
    .stat-number {
        font-size: 4rem;
        font-weight: 900;
        background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        line-height: 1;
        position: relative;
        z-index: 2;
    }
    
    .stat-label {
        font-size: 1.2rem;
        margin-top: 1rem;
        opacity: 0.9;
        font-weight: 500;
        position: relative;
        z-index: 2;
    }
    
    /* Features Section */
    .features {
        padding: 8rem 2rem;
        background: var(--secondary-dark);
        position: relative;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
        margin-top: 4rem;
    }
    
    .feature-card {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 25px;
        padding: 2.5rem;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }
    
    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .feature-card:hover::before {
        left: 100%;
    }
    
    .feature-card:hover {
        transform: translateY(-15px);
        border-color: var(--primary-gold);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    }
    
    .feature-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
        border-radius: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin: 0 auto 2rem;
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
        transition: all 0.3s ease;
    }
    
    .feature-card:hover .feature-icon {
        transform: scale(1.1) rotate(5deg);
    }
    
    .feature-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #fff;
    }
    
    .feature-description {
        font-size: 1rem;
        opacity: 0.8;
        line-height: 1.7;
        font-weight: 300;
    }
    
    /* Videos Section */
    .videos {
        padding: 8rem 2rem;
        background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    }
    
    .videos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 4rem;
        margin-top: 4rem;
    }
    
    .video-card {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 30px;
        overflow: hidden;
        transition: all 0.4s ease;
        position: relative;
    }
    
    .video-card:hover {
        transform: translateY(-20px) scale(1.02);
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    }
    
    .video-container {
        position: relative;
        overflow: hidden;
    }
    
    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    
    .video-card:hover video {
        transform: scale(1.05);
    }
    
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(212,175,55,0.2), rgba(244,208,63,0.2));
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .video-card:hover .video-overlay {
        opacity: 1;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--primary-dark);
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }
    
    .video-card:hover .play-button {
        transform: scale(1);
    }
    
    .video-info {
        padding: 2.5rem;
    }
    
    .video-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 0.5rem;
    }
    
    .video-description {
        opacity: 0.7;
        font-weight: 300;
    }
    
    /* Contact Section */
    .contact {
        padding: 8rem 2rem;
        background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-dark) 100%);
        position: relative;
        overflow: hidden;
    }
    
    .contact::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 50%);
        animation: pulse 8s infinite ease-in-out;
    }
    
    .contact-content {
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .contact-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
        margin-top: 4rem;
    }
    
    .contact-card {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 25px;
        padding: 3rem 2rem;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }
    
    .contact-card::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
        border-radius: 50%;
        transition: all 0.5s ease;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
    
    .contact-card:hover::before {
        width: 300px;
        height: 300px;
    }
    
    .contact-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
    }
    
    .contact-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin: 0 auto 2rem;
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    }
    
    .contact-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #fff;
    }
    
    .contact-text {
        font-size: 1.1rem;
        opacity: 0.8;
        font-weight: 400;
    }
    
    /* Footer */
    .footer {
        background: var(--primary-dark);
        padding: 3rem 2rem 2rem;
        text-align: center;
        border-top: 1px solid var(--glass-border);
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .footer-logo {
        font-size: 2.5rem;
        font-weight: 800;
        background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }
    
    .footer-text {
        opacity: 0.7;
        margin-bottom: 2rem;
        font-weight: 300;
    }
    
    .footer-social {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }
    
    .footer-copyright {
        padding-top: 2rem;
        border-top: 1px solid var(--glass-border);
        opacity: 0.5;
        font-size: 0.9rem;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--glass-bg);
        z-index: 9999;
    }
    
    .scroll-progress {
        height: 100%;
        background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
        width: 0%;
        transition: width 0.1s ease;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .nav-menu {
            display: none;
        }
        
        .hero-cta {
            flex-direction: column;
            align-items: center;
        }
        
        .about-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .videos-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        .contact-cards {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .about-card,
        .feature-card,
        .video-card {
            padding: 2rem;
        }
    }
    
    @media (max-width: 480px) {
        .navbar {
            padding: 1rem;
        }
        
        .hero-content {
            padding: 0 1rem;
        }
        
        .stats-grid {
            grid-template-columns: 1fr;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .about,
        .features,
        .videos,
        .contact {
            padding: 4rem 1rem;
        }
    }
    
    /* Scroll Animations */
    .scroll-fade {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
    }
    
    .scroll-fade.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .scroll-slide-left {
        opacity: 0;
        transform: translateX(-100px);
        transition: all 0.8s ease;
    }
    
    .scroll-slide-left.visible {
        opacity: 1;
        transform: translateX(0);
    }
    
    .scroll-slide-right {
        opacity: 0;
        transform: translateX(100px);
        transition: all 0.8s ease;
    }
    
    .scroll-slide-right.visible {
        opacity: 1;
        transform: translateX(0);
    }
    
    .scroll-scale {
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.8s ease;
    }
    
    .scroll-scale.visible {
        opacity: 1;
        transform: scale(1);
    }
    
    /* Particle Animation */
    .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }
    
    .particle {
        position: absolute;
        width: 2px;
        height: 2px;
        background: var(--primary-gold);
        border-radius: 50%;
        animation: particleFloat 10s infinite linear;
        opacity: 0;
    }
    
    @keyframes particleFloat {
        0% {
            opacity: 0;
            transform: translateY(100vh) scale(0);
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            transform: translateY(-100px) scale(1);
        }
    }


    .navbar {
    opacity: 0;
    transition: opacity 0.3s ease;
}
body.loaded .navbar {
    opacity: 1;
}
