/* Download Notification Styles */
.download-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.download-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon {
    font-size: 1.2rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-text {
    font-weight: 600;
    font-size: 1rem;
}

/* Casino Hero Section */
.casino-hero {
    position: relative;
    overflow: hidden;
}

.casino-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 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 30px 30px;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-30px); }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text .hero-subtext {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-bonus {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.bonus-badge {
    background: linear-gradient(135deg, #ff6f00, #ffca28);
    color: #1c1a7e;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(255, 111, 0, 0.3);
}

.hero-image {
    flex: 0 0 200px;
    text-align: center;
}

.hero-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin: 20px 0;
    object-fit: contain;
    
}


.btn-large {
    padding: 18px 50px;
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Stats Section */
.stats-section {
    padding: 40px 0;
    margin-top: -20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.stat-card {
    text-align: center;
    padding: 25px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 2.5rem;
    color: #ffca28;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* App Info Grid */
.app-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.info-card {
    background: linear-gradient(135deg, #f5f5f5, #eeeeee);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 2rem;
    color: #1c1a7e;
    margin-bottom: 10px;
}

.info-card h4 {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.info-card p {
    color: #1c1a7e;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.game-card {
    background: linear-gradient(135deg, #1c1a7e, #283593);
    color: white;
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(28, 26, 126, 0.3);
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.game-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.game-card p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    font-size: 2rem;
    color: #ff6f00;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #1c1a7e;
    margin-bottom: 5px;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Steps Container */
.steps-container {
    margin-top: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1c1a7e, #283593);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1c1a7e;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
}

/* Highlight Block */
.highlight-block {
    background: linear-gradient(135deg, #1c1a7e, #4a148c);
    color: white;
}

.highlight-block h2 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.referral-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.referral-item {
    text-align: center;
    padding: 25px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.referral-item:hover {
    transform: translateY(-5px);
}

.referral-item i {
    font-size: 2.5rem;
    color: #ffca28;
    margin-bottom: 10px;
}

.referral-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.referral-item p {
    opacity: 0.8;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    gap: 15px;
    margin-top: 25px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateX(5px);
}

.why-item i {
    font-size: 1.5rem;
    color: #4caf50;
    flex-shrink: 0;
}

.why-item h4 {
    color: #1c1a7e;
    margin-bottom: 3px;
}

.why-item p {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Container */
.faq-container {
    margin-top: 25px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.faq-question {
    font-weight: 600;
    color: #1c1a7e;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e8eaf6;
}

.faq-question i {
    color: #ff6f00;
}

.faq-answer {
    color: #666;
    padding: 15px 15px 0 15px;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1c1a7e 0%, #4a148c 50%, #ff6f00 100%);
    padding: 60px 20px;
    margin-top: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    color: white;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cta-features i {
    color: #4caf50;
}

/* Footer Enhancements */
.footer-links li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links i {
    width: 20px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}

.copyright i {
    color: #ff6f00;
}

/* FAQ Grid Styles */
.faq-section {
    background: #f8f9fa;
}

.faq-section .section-title {
    margin-bottom: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.faq-grid .faq-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-grid .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-grid .faq-question {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding: 0;
    background: transparent;
}

.faq-grid .faq-answer {
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .download-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 12px 20px;
    }
    
    .notification-text {
        font-size: 0.9rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-bonus {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .btn-large {
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}
