/* ==========================================================================
   Index Page Styles (Mobile-Locked 480px Viewport)
   ========================================================================== */

section {
    padding: 2.8rem 0;
    position: relative;
}

.section-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 0.6rem;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.3rem;
    display: block;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding: 2.2rem 0 2.5rem;
    background-color: var(--primary-color);
    text-align: center;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
    background: rgba(0, 0, 0, 0.15);
    padding: 3px 12px;
    border-radius: var(--radius-pill);
}

.hero-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.25;
    margin-bottom: 0.8rem;
}

.hero-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.6rem;
    line-height: 1.55;
}

.hero-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.4rem;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.6rem;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--text-heading);
    padding: 0.8rem 1.5rem;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 15px rgba(249, 191, 41, 0.35);
    border: 2px solid var(--accent-gold);
    transition: var(--transition);
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    color: var(--text-heading);
}

.hero-video-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-weight: 700;
    color: var(--text-white);
    font-size: 0.85rem;
    padding: 0.75rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
}

.video-play-icon {
    width: 22px;
    height: 22px;
    background: var(--accent-gold);
    color: var(--text-heading);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    padding-left: 2px;
}

.hero-image {
    margin-top: 0.5rem;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   Dynamic Ad Section
   -------------------------------------------------------------------------- */
.ad-wrapper {
    margin: 1.2rem auto 0.5rem;
}

.ad-container {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   Section 2: Showcase Grid
   -------------------------------------------------------------------------- */
.showcase-section {
    background-color: var(--bg-page);
}

.showcase-intro {
    text-align: center;
    margin-bottom: 1.5rem;
}

.showcase-intro p {
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 1rem;
}

.btn-dark-pill {
    background-color: var(--bg-charcoal);
    color: var(--text-white);
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.showcase-grid-mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.showcase-item {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 1rem 0.6rem 0.8rem;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showcase-img-wrap {
    width: 100%;
    height: 90px;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-img-wrap img {
    max-height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.showcase-item h3 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.showcase-item .badge-rtp {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.showcase-plus-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-charcoal);
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   Section 3: Why Choose Us (2x2 Features Grid)
   -------------------------------------------------------------------------- */
.why-us-section {
    background-color: var(--bg-white);
}

.why-us-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.why-us-desc {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.features-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-mini-card {
    background-color: var(--bg-page);
    padding: 1rem 0.8rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-mini-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.feature-mini-card h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-heading);
}

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

.why-us-image-wrap img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   Section 4: Modern Gaming Collage
   -------------------------------------------------------------------------- */
.collage-section {
    background-color: var(--bg-page);
}

.collage-visuals {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.collage-card-main img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.collage-col-right {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.collage-card-top img,
.collage-card-bottom img {
    width: 100%;
    height: 85px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.collage-content {
    text-align: center;
}

.collage-content p {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 1.2rem;
}

.checklist-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 0.8rem;
    margin-bottom: 1.4rem;
    text-align: left;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-heading);
}

.check-item i {
    color: var(--primary-color);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Section 5: Triple Highlight Cards
   -------------------------------------------------------------------------- */
.triple-highlights {
    background-color: var(--bg-white);
    padding: 2.2rem 0;
}

.triple-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.triple-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem;
    border-radius: var(--radius-md);
    background-color: var(--bg-page);
    border: 1px solid var(--border-color);
}

.triple-img {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.triple-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.triple-info h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.triple-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    line-height: 1.35;
}

.triple-link {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

/* --------------------------------------------------------------------------
   CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner-section {
    background-color: var(--bg-page);
    padding: 2rem 0;
}

.cta-banner-card {
    background-color: var(--primary-color);
    border-radius: var(--radius-md);
    padding: 1.6rem 1.2rem;
    text-align: center;
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.cta-banner-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.cta-banner-text h2 {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.cta-banner-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Stats Section (2x2 Grid)
   -------------------------------------------------------------------------- */
.stats-section {
    background-color: var(--bg-white);
    padding: 2.2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: center;
}

.stat-item {
    padding: 0.8rem;
    background-color: var(--bg-page);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.stat-value {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Live Winners Ticker
   -------------------------------------------------------------------------- */
.winners-section {
    background-color: var(--bg-page);
    padding: 2.2rem 0;
    overflow: hidden;
}

.winners-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.winners-header h2 {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-live {
    background-color: #e63946;
    color: var(--text-white);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.winners-ticker-wrap {
    overflow: hidden;
    width: 100%;
}

.winners-ticker {
    display: flex;
    gap: 1rem;
    animation: ticker 25s linear infinite;
    width: max-content;
}

.winner-card {
    min-width: 220px;
    background-color: var(--bg-white);
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid var(--border-color);
}

.winner-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
    flex-shrink: 0;
}

.winner-info p:first-child {
    font-weight: 700;
    color: var(--text-heading);
    font-size: 0.82rem;
}

.winner-amount {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.85rem;
}

.winner-info p:last-child {
    font-size: 0.7rem;
    color: var(--text-muted);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Popular Games (2-Column Mobile Grid)
   -------------------------------------------------------------------------- */
.games-section {
    background-color: var(--bg-white);
    padding: 2.5rem 0;
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.game-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 180px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.game-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(47, 78, 66, 0.9) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.8rem;
}

.game-overlay .btn-primary {
    padding: 0.45rem 0.8rem;
    font-size: 0.75rem;
}

.game-id-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-white);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-section {
    background-color: var(--bg-page);
    padding: 2.5rem 0;
    text-align: center;
}

.testimonial-container {
    margin-top: 1.4rem;
    background-color: var(--bg-white);
    padding: 1.5rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.testimonial-quote {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-heading);
    font-style: italic;
    margin-bottom: 1.2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.testimonial-author h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.testimonial-author p {
    font-size: 0.75rem;
    color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    width: 18px;
    border-radius: 8px;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
    background-color: var(--bg-white);
    padding: 2.5rem 0;
}

.faq-list {
    margin-top: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-card {
    background-color: var(--bg-page);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 1.2rem;
}

.faq-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-card h3 i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.faq-card p {
    color: var(--text-body);
    font-size: 0.82rem;
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Recent Blog / Tips
   -------------------------------------------------------------------------- */
.blog-section {
    background-color: var(--bg-page);
    padding: 2.5rem 0;
}

.blog-header {
    text-align: center;
    margin-bottom: 1.4rem;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding: 1rem;
}

.blog-img-wrap {
    height: 140px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.blog-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Newsletter / VIP Form
   -------------------------------------------------------------------------- */
.newsletter-section {
    background-color: var(--bg-page);
    padding: 2rem 0;
}

.newsletter-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.newsletter-form-wrap h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.newsletter-form-wrap p {
    font-size: 0.8rem;
    color: var(--text-body);
    margin-bottom: 1rem;
}

.newsletter-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.newsletter-inputs input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    box-sizing: border-box;
}

.btn-newsletter-submit {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 0.75rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.85rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* --------------------------------------------------------------------------
   Trust Badges / Partners
   -------------------------------------------------------------------------- */
.partners-section {
    background-color: var(--bg-white);
    padding: 1.8rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
}

.partner-item {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.partner-item i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Final CTA Section
   -------------------------------------------------------------------------- */
.final-cta-section {
    background-color: var(--primary-color);
    padding: 3rem 0;
    text-align: center;
    color: var(--text-white);
}

.final-cta-content h2 {
    font-size: 1.45rem;
    color: var(--text-white);
    margin-bottom: 0.6rem;
}

.final-cta-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.4rem;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.btn-secondary-white {
    background-color: transparent;
    color: var(--text-white);
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: block;
    text-align: center;
}