/* ============================================
   INDEX.CSS — Elegant Casino Homepage
   ============================================ */

.hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #faf8f3 0%, #f0ebe0 100%);
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 60%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50px;
    color: var(--burgundy);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--gold-primary);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.hero h1 .glow-text {
    color: var(--burgundy);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.7;
}

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

.btn-cyber {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary-cyber {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(114,47,55,0.25);
}

.btn-primary-cyber:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(114,47,55,0.35);
    background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy));
}

.btn-secondary-cyber {
    background: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}

.btn-secondary-cyber:hover {
    background: rgba(114,47,55,0.05);
    transform: translateY(-3px);
}

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

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-feature i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-dark));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 0.8rem;
}

.game-area {
    padding: 6rem 0;
}

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

.game-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(212,175,55,0.15);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: rgba(212,175,55,0.3);
}

.game-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-card:hover .game-thumb img { transform: scale(1.03); }

.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(114,47,55,0.85) 0%, transparent 50%);
}

.game-info {
    padding: 1.6rem;
}

.game-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.game-info p {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 1.4rem;
    line-height: 1.6;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.86rem;
    border-radius: 50px;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.35);
}

.stats-strip {
    padding: 3.5rem 0;
}

.stats-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(212,175,55,0.2);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-block {
    text-align: center;
    padding: 1rem 1.5rem;
    border-right: 1px solid rgba(212,175,55,0.2);
}

.stat-block:last-child { border-right: none; }

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #faf8f3 0%, #f2ebdd 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.8rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 2px solid rgba(212,175,55,0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature-card::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 45px rgba(0,0,0,0.12);
    border-color: rgba(212,175,55,0.35);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(114,47,55,0.15));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(212,175,55,0.15);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(212,175,55,0.28), rgba(114,47,55,0.22));
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 8px 25px rgba(212,175,55,0.25);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.bonuses-section {
    padding: 6rem 0;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2rem;
}

.bonus-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 2px solid rgba(212,175,55,0.1);
    position: relative;
    overflow: hidden;
}

.bonus-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: rgba(212,175,55,0.3);
}

.bonus-card:hover::after {
    opacity: 1;
}

.bonus-card.featured {
    background: linear-gradient(135deg, #722f37 0%, #5a252a 100%);
    color: var(--cream);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 8px 40px rgba(114,47,55,0.25);
}

.bonus-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(212,175,55,0.18);
    color: var(--gold-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    width: fit-content;
}

.bonus-card.featured .bonus-tag {
    background: rgba(244,228,188,0.22);
    color: var(--gold-light);
}

.bonus-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.bonus-card.featured h3 {
    color: var(--cream);
}

.bonus-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--burgundy);
    margin: 0.3rem 0;
}

.bonus-card.featured .bonus-amount {
    color: var(--gold-primary);
    font-size: 2.5rem;
}

.bonus-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    flex: 1;
}

.bonus-card.featured .bonus-text {
    color: rgba(250,248,243,0.85);
}

.bonus-card .btn-primary-cyber,
.bonus-card .btn-secondary-cyber {
    margin-top: auto;
    justify-content: center;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 0.95rem;
}

.bonus-card .btn-primary-cyber {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
}

.bonus-card .btn-primary-cyber:hover {
    background: linear-gradient(135deg, #e5c050, var(--gold-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.bonus-card .btn-secondary-cyber {
    border-color: var(--burgundy);
    color: var(--burgundy);
    border-width: 2px;
}

.bonus-card .btn-secondary-cyber:hover {
    background: rgba(114,47,55,0.05);
}

.bonus-card.featured .btn-secondary-cyber {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    border-width: 2px;
}

.bonus-card.featured .btn-secondary-cyber:hover {
    background: rgba(244,228,188,0.15);
}

.process-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #faf8f3 0%, #f0e8d9 100%);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.step {
    flex: 1;
    text-align: center;
    padding: 2.6rem 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 2px solid rgba(212,175,55,0.1);
    position: relative;
    overflow: hidden;
}

.step::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 14px 45px rgba(0,0,0,0.12);
    border-color: rgba(212,175,55,0.3);
}

.step:hover::after {
    opacity: 1;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(212,175,55,0.2);
}

.step-icon-wrapper {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, rgba(114,47,55,0.12), rgba(212,175,55,0.16));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.6rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(114,47,55,0.1);
}

.step:hover .step-icon-wrapper {
    background: linear-gradient(135deg, rgba(114,47,55,0.18), rgba(212,175,55,0.22));
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212,175,55,0.2);
}

.step-icon-wrapper i {
    font-size: 2.2rem;
    color: var(--burgundy);
    transition: transform 0.3s ease;
}

.step:hover .step-icon-wrapper i {
    transform: scale(1.15);
}

.step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.step p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2rem;
    margin-top: 5rem;
    color: var(--gold-primary);
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.step:hover ~ .step-arrow {
    transform: translateX(5px);
}

.news-section {
    padding: 6rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    border: 1px solid rgba(212,175,55,0.12);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-image img { transform: scale(1.03); }

.news-date {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--burgundy);
    border: 1px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-body {
    padding: 1.7rem;
}

.news-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.news-body h3 a:hover { color: var(--burgundy); }

.news-body p {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.1rem;
    color: var(--burgundy);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
}

.news-link:hover { gap: 0.8rem; }

.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #faf8f3 0%, #f5f0e6 100%);
}

.faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 2px solid rgba(212,175,55,0.08);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--gold-dark), var(--gold-primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.open {
    border-color: rgba(114,47,55,0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.faq-item.open::before {
    opacity: 1;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.6rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover { 
    color: var(--burgundy); 
    background: rgba(212,175,55,0.03);
}

.faq-icon {
    color: var(--gold-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.faq-item.open .faq-icon { 
    transform: rotate(45deg); 
    color: var(--burgundy);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.8rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-item.open .faq-answer { 
    max-height: 280px; 
}

.cta-section {
    padding: 5.5rem 0;
}

.cta-box {
    background: linear-gradient(135deg, #722f37 0%, #4a1f24 100%);
    border-radius: var(--radius-xl);
    padding: 3.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    box-shadow: 0 10px 40px rgba(114,47,55,0.25);
    overflow: hidden;
    position: relative;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 380px; height: 380px;
    background: var(--gold-primary);
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
}

.cta-content {
    position: relative;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1.1rem;
    background: rgba(244,228,188,0.18);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50px;
    color: var(--gold-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.9rem;
}

.cta-content .glow-text {
    color: var(--gold-primary);
}

.cta-content p {
    color: rgba(250,248,243,0.78);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 480px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.cta-actions .btn-primary-cyber {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
}

.cta-actions .btn-primary-cyber:hover {
    background: linear-gradient(135deg, #e5c050, var(--gold-primary));
}

.cta-actions .btn-secondary-cyber {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.cta-actions .btn-secondary-cyber:hover {
    background: rgba(244,228,188,0.08);
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .bonuses-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); margin: 0.8rem auto; padding: 0; }
    .cta-box { flex-direction: column; text-align: center; }
    .cta-actions { width: 100%; }
}

@media (max-width: 768px) {
    .hero { padding: 6rem 0 4rem; }

    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-cyber { width: 100%; justify-content: center; }
    
    .games-grid, .news-grid { grid-template-columns: 1fr; }
    
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat-block:nth-child(2) { border-right: none; }
    
    .features-grid { grid-template-columns: 1fr; }
    .game-area, .features-section, .bonuses-section, .process-section, .news-section, .faq-section { padding: 4.5rem 0; }
    .cta-box { padding: 3rem 2rem; }
}

@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr; }
    .stat-block { border-right: none; border-bottom: 1px solid rgba(212,175,55,0.2); }
    .stat-block:last-child { border-bottom: none; }
}
