/* ===== LANDING PAGE STYLES ===== */

/* ===== GAME DROPDOWN ===== */
.nav-left {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.game-dropdown {
    position: relative;
}

.game-dropdown-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.game-dropdown-btn:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.game-dropdown-btn i:first-child {
    color: var(--accent-cyan);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform var(--transition-fast);
}

.game-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.game-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: rgba(10, 10, 20, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px;
    z-index: 1000;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    animation: dropdownFadeIn 0.2s ease;
}

.game-dropdown.active .game-dropdown-menu {
    display: block;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.game-dropdown-item:hover {
    background: rgba(0, 240, 255, 0.08);
    color: var(--text-primary);
}

.game-dropdown-icon {
    font-size: 1.3rem;
    width: 28px;
    text-align: center;
}

/* ===== LANDING HERO ===== */
.landing-hero {
    text-align: center;
    min-height: 50vh;
}

.landing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.landing-hero .hero-badge {
    margin: 0 auto var(--space-lg);
}

.landing-hero .hero-stats {
    justify-content: center;
}

.landing-hero .hero-buttons {
    justify-content: center;
}

/* ===== HERO GAME PICKER ===== */
.hero-game-picker {
    margin: 32px auto 24px;
    max-width: 860px;
}

.hero-game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hero-game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.hero-game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: radial-gradient(ellipse at center top, var(--card-glow, #00f0ff) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-game-card:hover {
    transform: translateY(-6px);
    border-color: var(--card-glow, rgba(0, 240, 255, 0.4));
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px color-mix(in srgb, var(--card-glow, #00f0ff) 25%, transparent);
    background: rgba(255, 255, 255, 0.07);
}

.hero-game-card:hover::before {
    opacity: 0.12;
}

.hero-game-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.hero-game-card:hover .hero-game-icon {
    transform: scale(1.1);
}

.hero-game-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

.hero-game-count {
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 20px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hero-game-card {
        padding: 16px 10px 12px;
    }

    .hero-game-icon {
        width: 40px;
        height: 40px;
    }

    .hero-game-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .hero-game-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== GAMES GRID ===== */
.games-section {
    padding: var(--space-3xl) 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: -20px;
    margin-bottom: var(--space-2xl);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.game-hub-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    cursor: pointer;
}

.game-hub-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 240, 255, 0.15);
}

.game-hub-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.game-hub-card:hover .game-hub-glow {
    opacity: 0.6;
}

/* Game-specific glow colors */
.mm2-glow {
    background: var(--accent-cyan);
}

.bee-hub-glow {
    background: #ffc107;
}

.blade-hub-glow {
    background: #ff4444;
}

.fruits-hub-glow {
    background: #ff6b35;
}

.nights-hub-glow {
    background: #7c4dff;
}

.dress-hub-glow {
    background: #e91e63;
}

.game-hub-icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
}

.game-hub-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    text-align: center;
}

.game-hub-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

.game-hub-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.game-hub-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all var(--transition-fast);
}

.game-hub-arrow svg {
    width: 18px;
    height: 18px;
    color: var(--accent-cyan);
    transition: transform var(--transition-fast);
}

.game-hub-card:hover .game-hub-arrow {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.game-hub-card:hover .game-hub-arrow svg {
    color: #000;
    transform: translateX(3px);
}

/* ===== GAME CARD — PER-GAME BORDER COLORS ===== */
#gameCardMM2 {
    border-color: rgba(0, 240, 255, 0.30);
    box-shadow: 0 4px 24px rgba(0, 240, 255, 0.08), inset 0 1px 0 rgba(0, 240, 255, 0.06);
}
#gameCardMM2:hover {
    border-color: rgba(0, 240, 255, 0.70);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(0, 240, 255, 0.22);
}

#gameCardBee {
    border-color: rgba(255, 193, 7, 0.30);
    box-shadow: 0 4px 24px rgba(255, 193, 7, 0.08), inset 0 1px 0 rgba(255, 193, 7, 0.06);
}
#gameCardBee:hover {
    border-color: rgba(255, 193, 7, 0.70);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(255, 193, 7, 0.22);
}

#gameCardBlade {
    border-color: rgba(255, 68, 68, 0.30);
    box-shadow: 0 4px 24px rgba(255, 68, 68, 0.08), inset 0 1px 0 rgba(255, 68, 68, 0.06);
}
#gameCardBlade:hover {
    border-color: rgba(255, 68, 68, 0.70);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(255, 68, 68, 0.22);
}

#gameCardFruits {
    border-color: rgba(255, 107, 53, 0.30);
    box-shadow: 0 4px 24px rgba(255, 107, 53, 0.08), inset 0 1px 0 rgba(255, 107, 53, 0.06);
}
#gameCardFruits:hover {
    border-color: rgba(255, 107, 53, 0.70);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(255, 107, 53, 0.22);
}

#gameCardNights {
    border-color: rgba(124, 77, 255, 0.30);
    box-shadow: 0 4px 24px rgba(124, 77, 255, 0.08), inset 0 1px 0 rgba(124, 77, 255, 0.06);
}
#gameCardNights:hover {
    border-color: rgba(124, 77, 255, 0.70);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(124, 77, 255, 0.22);
}

#gameCardDress {
    border-color: rgba(233, 30, 99, 0.30);
    box-shadow: 0 4px 24px rgba(233, 30, 99, 0.08), inset 0 1px 0 rgba(233, 30, 99, 0.06);
}
#gameCardDress:hover {
    border-color: rgba(233, 30, 99, 0.70);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(233, 30, 99, 0.22);
}

/* ===== MOBILE GAME LINKS ===== */
.mobile-game-links {
    border-top: 1px solid var(--border-color);
    padding-top: var(--space-md);
    margin-top: var(--space-md);
}

.mobile-game-links h4 {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .game-dropdown {
        display: none;
    }

    .nav-left {
        gap: var(--space-sm);
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .game-hub-card {
        padding: 30px 20px 20px;
    }

    .game-hub-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== INFLUENCER MARQUEE ===== */
.influencer-section {
    padding: var(--space-2xl) 0 var(--space-xl);
    overflow: hidden;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: var(--space-lg) 0;
}

.marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary, #05050a) 0%, transparent 100%);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary, #05050a) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.influencer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 24px 16px;
    min-width: 140px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.influencer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(ellipse at center top, rgba(0, 240, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.influencer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 240, 255, 0.08);
    background: rgba(255, 255, 255, 0.07);
}

.influencer-card:hover::before {
    opacity: 1;
}

.influencer-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.influencer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.influencer-avatar-initial {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(0, 240, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(120, 80, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.influencer-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    white-space: nowrap;
}

.influencer-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.influencer-meta i {
    font-size: 0.7rem;
}

.influencer-platform {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.platform-tiktok {
    background: rgba(255, 0, 80, 0.12);
    color: #ff0050;
}

.platform-instagram {
    background: rgba(225, 48, 108, 0.12);
    color: #e1306c;
}

@media (max-width: 768px) {
    .marquee-fade {
        width: 40px;
    }

    .influencer-card {
        min-width: 120px;
        padding: 16px 18px 12px;
    }

    .influencer-avatar,
    .influencer-avatar-initial {
        width: 52px;
        height: 52px;
    }

    .influencer-avatar-initial {
        font-size: 1.1rem;
    }

    .influencer-name {
        font-size: 0.78rem;
    }
}

/* ===== TRUSTPILOT REVIEWS SECTION ===== */
.trustpilot-section {
    padding: var(--space-3xl) 0;
}

.tp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.tp-header-left {
    flex: 1;
    min-width: 280px;
}

.tp-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0, 182, 122, 0.1);
    border: 1px solid rgba(0, 182, 122, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: #00b67a;
    font-weight: 600;
    margin-bottom: var(--space-md);
    letter-spacing: 0.3px;
}

.tp-rating-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    min-width: 200px;
}

.tp-rating-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tp-rating-value {
    color: #00b67a;
    font-weight: 700;
}

.tp-rating-stars {
    color: #00b67a;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.tp-rating-count {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.tp-trustpilot-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #00b67a;
    text-decoration: none;
    font-weight: 600;
}

.tp-trustpilot-link:hover {
    text-decoration: underline;
}

.tp-carousel-wrapper {
    position: relative;
}

.tp-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}

.tp-carousel::-webkit-scrollbar {
    display: none;
}

.tp-review-card {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    transition: all 0.3s ease;
}

.tp-review-card:hover {
    border-color: rgba(0, 182, 122, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.tp-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.tp-reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b67a, #00d68f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.tp-reviewer-info {
    display: flex;
    flex-direction: column;
}

.tp-reviewer-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.tp-reviewer-location {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.tp-review-date {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.tp-review-stars {
    color: #00b67a;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    gap: 2px;
}

.tp-review-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tp-review-readmore {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: none;
}

.tp-review-readmore:hover {
    color: var(--text-primary);
}

.tp-carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: var(--space-md);
}

.tp-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.tp-nav-btn:hover {
    background: rgba(0, 182, 122, 0.15);
    border-color: rgba(0, 182, 122, 0.4);
    color: #00b67a;
}

.tp-footer {
    text-align: center;
    margin-top: var(--space-xl);
}

.tp-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(0, 182, 122, 0.12);
    border: 1px solid rgba(0, 182, 122, 0.3);
    border-radius: var(--radius-full);
    color: #00b67a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tp-view-all-btn:hover {
    background: rgba(0, 182, 122, 0.2);
    border-color: #00b67a;
    box-shadow: 0 4px 20px rgba(0, 182, 122, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .tp-header {
        flex-direction: column;
    }

    .tp-header-left .section-title {
        text-align: center !important;
    }

    .tp-badge {
        display: block;
        text-align: center;
    }

    .tp-rating-badge {
        width: 100%;
    }

    .tp-review-card {
        flex: 0 0 260px;
    }

    .tp-carousel-nav {
        justify-content: center;
    }
}