/* Root Variables */
:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --accent-gold: #eecb8c;
    --gold-gradient: linear-gradient(135deg, #eecb8c 0%, #d4a946 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --border-color: #404040;
    --shadow-light: 0 4px 15px rgba(255, 215, 0, 0.1);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #eecb8c;
}

/* Typography */
.text-gold {
    color: var(--accent-gold) !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Navigation */
.premium-nav {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: var(--transition);
}

.premium-nav.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: var(--shadow-dark);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    color: var(--text-light) !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    border: none;
    color: var(--primary-dark);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    color: var(--primary-dark);
}

.btn-outline-gold {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.cta-btn {
    position: relative;
    overflow: hidden;
}

.cta-btn::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;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('../assets/hero-bg.svg') center/cover no-repeat, var(--dark-gradient);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.15) 0%, rgba(0,0,0,0.3) 70%);
    z-index: 2;
}

.hero-content {
    z-index: 3;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    margin-bottom: 2rem;
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.hero-visual {
    position: relative;
    z-index: 3;
}

.floating-card {
    animation: float 3s ease-in-out infinite;
}

.instant-lottery-card .card {
    background: var(--gold-gradient);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
    overflow: hidden;
}

.price-tag {
    background: var(--primary-dark);
    color: var(--accent-gold);
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Stats Section */
.stats-section {
    background: var(--secondary-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-card {
    padding: 2rem 1rem;
    transition: var(--transition);
}

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

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Games Section */
.games-section {
    padding: 5rem 0;
}

.game-card {
    background: var(--secondary-dark);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.game-card:hover::before {
    transform: scaleX(1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
    border-color: var(--accent-gold);
}

.game-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
}

/* Game Images */
.game-image {
    /* width: 120px;
    height: 120px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* transition: var(--transition); */
    position: relative;
    overflow: hidden;
    /* border-radius: 50%; */
    /* background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05)); */
    /* border: 3px solid rgba(255, 215, 0, 0.3); */
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); */
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.game-card:hover {
    transform: scale(1.05);
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 8px 25px rgba(0, 0, 0, 0.4);
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

/* Game image glow effect */
.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 30%, rgba(255, 215, 0, 0.1) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.game-card:hover .game-image::before {
    opacity: 1;
}

.game-badge {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.game-card-body h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.game-card-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.game-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Features Section */
.features-section {
    background: var(--secondary-dark);
    padding: 5rem 0;
}

.feature-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(180deg);
}

.feature-card h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: var(--dark-gradient);
    padding: 5rem 0;
}

.cta-card {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-light);
}

.testimonial-stars {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.author-info h5 {
    margin: 0;
    font-weight: 600;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
.footer-section {
    background: var(--primary-dark);
    border-top: 1px solid var(--border-color);
}

.footer-heading {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0;
}

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

.footer-legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal-link:hover {
    color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-trust-badges {
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .cta-features {
        gap: 1rem;
    }
    
    .game-card {
        margin-bottom: 2rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta .btn {
        display: block;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .hero-trust-badges {
        justify-content: center;
        text-align: center;
    }
    
    .trust-item {
        flex-basis: 100%;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-card {
        margin-top: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Limited Time Offer Section */
.offer-section {
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
}

.offer-banner {
    background: var(--secondary-dark);
    border: 2px solid var(--accent-gold);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: rotate 8s linear infinite;
}

.offer-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff4444, #ff6666);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.offer-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.offer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 215, 0, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.offer-value {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

.offer-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

.offer-visual {
    position: relative;
    flex: 0 0 200px;
    height: 200px;
}

.floating-coins {
    position: relative;
    width: 100%;
    height: 100%;
}

.coin {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: bold;
}

.coin::before {
    content: '₹';
}

.coin-1 {
    top: 20%;
    left: 20%;
    animation: float 3s ease-in-out infinite;
}

.coin-2 {
    top: 50%;
    right: 10%;
    animation: float 3s ease-in-out infinite 1s;
}

.coin-3 {
    bottom: 20%;
    left: 50%;
    animation: float 3s ease-in-out infinite 2s;
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--secondary-dark);
}

.advantage-card {
    background: var(--primary-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: left 0.5s;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-dark);
}

.advantage-icon {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 2rem;
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotateY(180deg);
}

.advantage-content h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.advantage-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-highlight {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Success Stories Section */
.success-stories-section {
    background: var(--dark-gradient);
}

.success-story-card {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.success-story-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.success-story-card:hover::after {
    transform: scaleX(1);
}

.success-story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
    border-color: var(--accent-gold);
}

.story-header {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.win-amount {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.win-badge {
    background: var(--primary-dark);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.story-content {
    padding: 2rem;
}

.story-content h4 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-author {
    color: var(--text-light);
    font-weight: 600;
}

.story-date {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: normal;
    margin-top: 0.5rem;
}

/* Countdown Timer Animation */
#countdown {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Additional Animations */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}



/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        background: url('../assets/hero-bg.svg') center/cover no-repeat, var(--dark-gradient);
        background-size: cover;
        background-position: center center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .offer-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-visual {
        flex: none;
        margin-top: 2rem;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .offer-details {
        grid-template-columns: 1fr;
    }
    
    .advantage-card {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-icon {
        margin: 0 auto;
    }
    
    .win-amount {
        font-size: 1.5rem;
    }
}

/* Utility Classes */
.bg-gradient-gold {
    background: var(--gold-gradient) !important;
}

.bg-gradient-dark {
    background: var(--dark-gradient) !important;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.box-shadow-gold {
    box-shadow: var(--shadow-light);
}

.border-gold {
    border-color: var(--accent-gold) !important;
}

/* Hover Effects */
.hover-lift {
    transition: var(--transition);
}

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

.hover-glow {
    transition: var(--transition);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
