/* ===================================
   LUXURY CASINO - GOLD/PURPLE THEME
   =================================== */

/* --- Layout Sections --- */
.main-container {
    width: 100%;
    overflow-x: hidden;
}

.dark-top-section {
    background: linear-gradient(135deg, #0d0216 0%, #1e0633 100%);
    padding-bottom: 80px;
}

.light-bottom-section {
    background: #0a0a0f; /* Keeping it dark but slightly different */
    padding-top: 80px;
    padding-bottom: 80px;
}

/* --- Banner --- */
.banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 120px 20px;
    gap: 80px;
    position: relative;
}

.banner-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.banner-content {
    flex: 1.2;
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.banner-content h1 span {
    display: block;
    background: linear-gradient(135deg, var(--accent) 0%, #fff 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.banner-content p {
    font-family: var(--font-main);
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.banner-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.banner-image img {
    max-width: 110%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.banner-image:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* --- Trust Strip --- */
.trust-strip {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 30px 0;
}

.trust-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.8;
}

.trust-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* --- Sections --- */
.section {
    padding: 100px 20px;
    max-width: var(--container);
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.section-subtitle {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.title-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

/* --- Luxury Card Styles --- */
.promo-card, .game-card, .win-card, .benefit-card, .step-icon {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: linear-gradient(145deg, rgba(30, 6, 51, 0.8) 0%, rgba(22, 4, 37, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promo-card:hover, .game-card:hover, .win-card:hover, .benefit-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
    transform: translateY(-12px);
}

/* --- Promos --- */
.promos-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.promo-card {
    padding: 48px;
    min-height: 320px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.promo-card.promo-featured {
    background: linear-gradient(135deg, rgba(45, 10, 78, 0.9) 0%, rgba(22, 4, 37, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.promo-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--accent);
    color: #000;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.promo-card h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.promo-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.promo-cta {
    color: var(--accent);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Vertical Games --- */
.vertical-games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- Luxury Poster Game Cards --- */
.vertical-games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.game-poster-card {
    background: var(--bg-elevated);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.game-poster-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
}

.poster-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.poster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(to top, rgba(13, 2, 22, 0.95) 0%, rgba(13, 2, 22, 0.6) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.poster-badge {
    background: var(--accent);
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.poster-title {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.poster-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--bg-elevated);
}

.poster-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.poster-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-poster-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #b8941d 100%);
    color: #000;
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-poster-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-poster-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-poster-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

@media (max-width: 992px) {
    .vertical-games { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}

@media (max-width: 768px) {
    .vertical-games { grid-template-columns: 1fr; gap: 30px; }
}

/* --- Steps --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.step-card {
    position: relative;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, #1e0633 0%, #160425 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.step-title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.step-desc {
    font-family: var(--font-main);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Benefits --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 25px;
    display: block;
}

.benefit-card h4 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.benefit-card p {
    font-family: var(--font-main);
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Live Wins --- */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulseRed 1.5s infinite;
}

@keyframes pulseRed {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 68, 68, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); }
}

.wins-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.win-card {
    padding: 24px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.win-card.featured {
    background: linear-gradient(145deg, rgba(45, 10, 78, 0.9) 0%, rgba(22, 4, 37, 0.95) 100%);
    border: 1.5px solid var(--accent);
}

.win-card.jackpot-card {
    border-color: #ff4444;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.1);
}

.win-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.win-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.win-card-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.win-card-body {
    margin-bottom: 15px;
}

.win-card-user {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.win-card-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.win-card-amount.highlight { color: #ffd700; }
.win-card-amount.jackpot { color: #ff4444; }

.win-card-footer {
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
}

/* --- Providers --- */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.provider-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 15px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    filter: grayscale(0.5);
    opacity: 0.7;
}

.provider-card:hover {
    filter: grayscale(0);
    opacity: 1;
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--accent);
    color: var(--accent);
}

.provider-card i {
    font-size: 1.5rem;
}

/* --- FAQ --- */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-question {
    color: var(--accent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
}

/* --- Responsive Fixes --- */
@media (max-width: 1200px) {
    .banner-wrapper { gap: 30px; padding: 60px 20px; }
    .promos-grid { grid-template-columns: 1fr 1fr; }
    .promo-card.promo-featured { grid-column: span 2; }
}

@media (max-width: 992px) {
    .section { padding: 60px 20px; }
    .banner-wrapper { flex-direction: column; text-align: center; padding: 60px 20px; }
    .banner-content h1 { font-size: 2.8rem; }
    .banner-image { width: 100%; max-width: 500px; margin: 0 auto; }
    .vertical-games { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .game-card-header { height: 220px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    /* Improve promos on tablet */
    .promo-card { padding: 32px; min-height: 280px; }
    .promo-card h4 { font-size: 1.6rem; }
}

@media (max-width: 768px) {
    .section { padding: 40px 20px; }
    .section-header { margin-bottom: 30px !important; }
    .banner-content h1 { font-size: 2.2rem; margin-bottom: 15px; }
    .banner-content p { font-size: 1rem; margin-bottom: 25px; }
    .trust-strip { padding: 15px 0; }
    .trust-container { flex-wrap: wrap; justify-content: center; gap: 12px 24px; }
    .trust-item { font-size: 0.85rem; }
    
    /* Stack promos on mobile */
    .promos-grid { grid-template-columns: 1fr; gap: 20px; }
    .promo-card.promo-featured { grid-column: auto; }
    .promo-card { padding: 24px; min-height: 240px; }
    .promo-card h4 { font-size: 1.4rem; }
    .promo-badge { top: 20px; left: 20px; }
    
    .vertical-games { grid-template-columns: 1fr; gap: 20px; }
    .game-card { border-radius: 30px; }
    .game-card-header { height: 200px; }
    .game-card-info { padding: 25px; }
    .game-card-actions { padding: 20px; }
    .wins-grid { grid-template-columns: 1fr; gap: 15px; }
    .providers-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .provider-card { padding: 15px 10px; font-size: 0.85rem; }
    .faq-container { padding: 0; }
    .faq-question { padding: 18px 20px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .banner-content h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.8rem; }
    .promo-card { padding: 20px; min-height: 200px; }
    .promo-card h4 { font-size: 1.25rem; }
    .promo-badge { padding: 4px 12px; font-size: 0.7rem; }
}
