/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-burgundy: #390517;
    --warm-tan: #A38560;
    --deep-teal: #16302B;
    --almost-black: #03110D;
    --light-grey: #E0E0E0;
    --rusty-red: #A44529;
    --white: #FFFFFF;
    --black: #000000;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--almost-black);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-burgundy);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--deep-teal);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--rusty-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-burgundy);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--warm-tan);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--deep-teal);
    transform: translateY(-2px);
}

.btn-login {
    background-color: var(--deep-teal);
    color: var(--white);
}

.btn-login:hover {
    background-color: var(--dark-burgundy);
}

.btn-register {
    background-color: var(--rusty-red);
    color: var(--white);
}

.btn-register:hover {
    background-color: var(--dark-burgundy);
}

.btn-login-large, .btn-register-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    margin: 10px;
}

.btn-register-large {
    background: linear-gradient(135deg, var(--rusty-red) 0%, var(--dark-burgundy) 100%);
    color: var(--white);
    border: 2px solid var(--warm-tan);
    border-radius: 25px;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(164, 69, 41, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-register-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-register-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(164, 69, 41, 0.6);
    border-color: var(--rusty-red);
    background: linear-gradient(135deg, var(--dark-burgundy) 0%, var(--rusty-red) 100%);
}

.btn-register-large:hover::before {
    left: 100%;
}

.btn-register-large:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(164, 69, 41, 0.5);
}

.btn-login-large {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--dark-burgundy) 100%);
    color: var(--white);
    border: 2px solid var(--warm-tan);
    border-radius: 25px;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(22, 48, 43, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-login-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-login-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(22, 48, 43, 0.6);
    border-color: var(--deep-teal);
    background: linear-gradient(135deg, var(--dark-burgundy) 0%, var(--deep-teal) 100%);
}

.btn-login-large:hover::before {
    left: 100%;
}

.btn-login-large:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(22, 48, 43, 0.5);
}

/* Header and Navigation */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--deep-teal);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--rusty-red);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--deep-teal);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--dark-burgundy) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Dynamic Casino Background Elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(164, 69, 41, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(163, 133, 96, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(22, 48, 43, 0.4) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite;
}

/* Slot Machine Reels Effect */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.1) 25%, transparent 50%, rgba(255, 215, 0, 0.1) 75%, transparent 100%);
    animation: slotReels 8s linear infinite;
}

/* Floating Casino Chips */
.hero-section .casino-chips {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-section .casino-chip {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border: 2px solid #FFF;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: floatChip 6s ease-in-out infinite;
}

.hero-section .casino-chip:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-section .casino-chip:nth-child(2) { top: 60%; left: 85%; animation-delay: 1s; }
.hero-section .casino-chip:nth-child(3) { top: 80%; left: 15%; animation-delay: 2s; }
.hero-section .casino-chip:nth-child(4) { top: 30%; left: 80%; animation-delay: 3s; }
.hero-section .casino-chip:nth-child(5) { top: 70%; left: 5%; animation-delay: 4s; }

/* Glowing Particles */
.hero-section .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
    animation: particleGlow 4s ease-in-out infinite;
}

.hero-section .particle:nth-child(1) { top: 25%; left: 20%; animation-delay: 0s; }
.hero-section .particle:nth-child(2) { top: 45%; left: 75%; animation-delay: 0.5s; }
.hero-section .particle:nth-child(3) { top: 65%; left: 30%; animation-delay: 1s; }
.hero-section .particle:nth-child(4) { top: 85%; left: 70%; animation-delay: 1.5s; }
.hero-section .particle:nth-child(5) { top: 15%; left: 60%; animation-delay: 2s; }
.hero-section .particle:nth-child(6) { top: 55%; left: 10%; animation-delay: 2.5s; }

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: var(--light-grey);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--warm-tan);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    margin-bottom: 1rem;
}

/* Login Section */
.login-section {
    padding: 80px 0;
    background-color: var(--white);
}

.login-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.login-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-grey);
    border-radius: 10px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--rusty-red);
    color: var(--white);
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Register Section */
.register-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.register-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.register-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit img {
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-grey);
    border-radius: 10px;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--rusty-red);
    margin-bottom: 0.5rem;
}

.about-button-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-about-us-large {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--dark-burgundy) 100%);
    color: var(--white);
    border: 2px solid var(--warm-tan);
    border-radius: 25px;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(22, 48, 43, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-about-us-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-about-us-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(22, 48, 43, 0.6);
    border-color: var(--deep-teal);
    background: linear-gradient(135deg, var(--dark-burgundy) 0%, var(--deep-teal) 100%);
    color: var(--white);
}

.btn-about-us-large:hover::before {
    left: 100%;
}

.btn-about-us-large:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(22, 48, 43, 0.5);
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.games-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--rusty-red);
}

.game-card .game-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--deep-teal), var(--dark-burgundy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.game-card h3 {
    color: var(--dark-burgundy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.game-card p {
    color: var(--deep-teal);
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    padding: 2rem;
    background-color: var(--light-grey);
    border-radius: 10px;
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    border-top: 1px solid var(--light-grey);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--rusty-red);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--deep-teal);
    color: var(--white);
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--warm-tan);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--light-grey);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-burgundy) 0%, var(--rusty-red) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--light-grey);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--almost-black);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3, .footer-section h4 {
    color: var(--warm-tan);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--warm-tan);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--warm-tan);
}

.footer-bottom {
    border-top: 1px solid var(--deep-teal);
    padding-top: 2rem;
    text-align: center;
    color: var(--light-grey);
}

/* Mobile Navigation Styles */
.nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
}

/* Mobile Nav Buttons */
.nav-menu.active .nav-buttons {
    display: flex !important;
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 2rem;
    border-top: 1px solid var(--light-grey);
    margin-top: 0.5rem;
    justify-content: center;
}

.nav-menu.active .nav-buttons .btn {
    width: auto;
    min-width: 120px;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    flex: 0 1 auto;
}

/* Desktop Only Nav Buttons */
.desktop-only {
    display: flex;
}

/* Mobile Nav Buttons Styling */
.nav-menu.active li.nav-buttons {
    border-bottom: none;
    padding: 1rem 2rem;
}

.nav-menu.active li.nav-buttons .btn {
    margin: 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-menu.active li.nav-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-menu.active li {
    margin: 0;
    padding: 0.5rem 2rem;
    border-bottom: 1px solid var(--light-grey);
    text-align: center;
}

.nav-menu.active li:last-child {
    border-bottom: none;
}

.nav-menu.active .nav-link {
    display: block;
    padding: 0.5rem 0;
    color: var(--deep-teal);
    font-weight: 600;
    text-align: center;
}

.nav-menu.active .nav-link:hover {
    color: var(--rusty-red);
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-buttons.desktop-only {
        display: none;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Menu Container */
    .nav-container {
        position: relative;
    }
    
    /* Mobile Menu Positioning */
    .nav-menu.active {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 10px 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .features-grid,
    .games-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Small Mobile Navbar Adjustments */
    .nav-logo img {
        height: 40px;
        width: auto;
    }
    
    .hamburger {
        margin-left: auto;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    
    /* Mobile Menu Text Adjustments */
    .nav-menu.active .nav-link {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--rusty-red);
    outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--rusty-red);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --dark-burgundy: #000000;
        --warm-tan: #FFFFFF;
        --deep-teal: #000000;
        --almost-black: #000000;
        --light-grey: #FFFFFF;
        --rusty-red: #FF0000;
    }
}

/* Casino Hero Section Animations */
@keyframes backgroundShift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1) rotate(1deg);
        opacity: 0.8;
    }
}

@keyframes slotReels {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes floatChip {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 1;
    }
}

@keyframes particleGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 20px #FFD700, 0 0 40px #FFD700, 0 0 60px #FFD700;
    }
} 