/* ============================================================
   SLOT GAMING - Black & Deep Yellow Theme
   ============================================================ */

:root {
    --yellow: #FFD700;
    --yellow-deep: #FFA500;
    --yellow-dark: #CC8800;
    --yellow-light: #FFE55C;
    --yellow-glow: rgba(255, 215, 0, 0.3);
    --black: #0A0A0A;
    --black-card: #111111;
    --black-card2: #161616;
    --black-border: #1E1E1E;
    --black-hover: #1A1A1A;
    --white: #FFFFFF;
    --gray: #888888;
    --gray-light: #AAAAAA;
    --green: #22c55e;
    --red: #ef4444;
    --gradient-yellow: linear-gradient(135deg, #FFD700, #FFA500);
    --gradient-dark: linear-gradient(135deg, #111111, #1a1a1a);
    --shadow-yellow: 0 0 20px rgba(255, 215, 0, 0.3);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body[dir="rtl"] { direction: rtl; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--yellow-deep); border-radius: 3px; }

/* ===== LANGUAGE BAR (DROPDOWN) ===== */
.lang-bar {
    background: linear-gradient(90deg, #0d0d0d, #1a1500, #0d0d0d);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 7px 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.lang-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-bar-label {
    color: var(--yellow);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ---- Dropdown Wrapper ---- */
.lang-dropdown-wrap {
    position: relative;
}

/* ---- Trigger Button ---- */
.lang-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,215,0,0.08);
    border: 1px solid rgba(255,215,0,0.35);
    border-radius: 24px;
    padding: 6px 14px 6px 10px;
    cursor: pointer;
    color: var(--white);
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
    min-width: 150px;
    justify-content: space-between;
}

.lang-dropdown-trigger:hover {
    background: rgba(255,215,0,0.15);
    border-color: var(--yellow);
    box-shadow: 0 0 12px rgba(255,215,0,0.2);
}

.lang-dropdown-trigger.open {
    background: rgba(255,215,0,0.15);
    border-color: var(--yellow);
    border-radius: 12px 12px 0 0;
    border-bottom-color: transparent;
}

.lang-trigger-flag {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.lang-trigger-name {
    flex: 1;
    text-align: left;
    color: var(--white);
    font-size: 0.82rem;
}

.lang-arrow {
    font-size: 0.7rem;
    color: var(--yellow);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.lang-dropdown-trigger.open .lang-arrow {
    transform: rotate(180deg);
}

/* ---- Dropdown Menu ---- */
.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 190px;
    background: #111100;
    border: 1px solid rgba(255,215,0,0.3);
    border-top: none;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 9999;
    box-shadow: 0 16px 40px rgba(0,0,0,0.7), 0 0 20px rgba(255,215,0,0.1);
    animation: dropdownFade 0.2s ease;
}

.lang-dropdown-menu.open {
    display: flex;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Each Option ---- */
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--gray-light);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    width: 100%;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: relative;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(255,215,0,0.1);
    color: var(--yellow);
}

.lang-option.active {
    background: rgba(255,215,0,0.12);
    color: var(--yellow);
    font-weight: 700;
}

.lang-option .flag-icon {
    font-size: 1.15rem;
    line-height: 1;
    flex-shrink: 0;
}

.lang-option-name {
    flex: 1;
}

.lang-check {
    font-size: 0.7rem;
    color: var(--yellow);
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.lang-option.active .lang-check {
    opacity: 1;
}

/* Legacy .flag-icon used in other parts */
.flag-icon { font-size: 1rem; line-height: 1; }
.lang-name { font-size: 0.72rem; font-weight: 600; }

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,215,0,0.15);
    position: sticky;
    top: 45px;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.navbar.scrolled {
    top: 0;
    box-shadow: 0 4px 30px rgba(255,215,0,0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}

.nav-brand .logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo .slot {
    color: var(--yellow);
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.logo .gaming {
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    color: var(--gray-light);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--yellow);
    background: rgba(255,215,0,0.1);
}

.nav-cta .btn { font-size: 0.875rem; padding: 9px 20px; }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFE55C, #FFB800);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--yellow);
    border-color: var(--yellow);
}

.btn-outline:hover {
    background: rgba(255,215,0,0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.2);
}

.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== SECTION BASE ===== */
section { padding: 90px 0; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--yellow);
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-title span, .section-title .highlight {
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(255,165,0,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,215,0,0.05) 0%, transparent 70%),
        linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--yellow);
    border-radius: 50%;
    animation: float-particle linear infinite;
    opacity: 0;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.4);
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.3); }
    50% { box-shadow: 0 0 0 8px rgba(255,215,0,0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .line { display: block; }
.hero-title .highlight {
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

/* ===== PHONE MOCKUP ===== */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    width: 240px;
    height: 480px;
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-radius: 36px;
    padding: 12px;
    border: 2px solid rgba(255,215,0,0.3);
    box-shadow:
        0 0 40px rgba(255,165,0,0.2),
        0 30px 80px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.1);
    animation: phone-float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes phone-float {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-16px) rotate(2deg); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #050505, #0f0f0f);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slot-game {
    width: 100%;
    padding: 16px;
    text-align: center;
}

.game-header { margin-bottom: 16px; }

.game-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow-pulse 1.5s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.4); }
}

.game-reels {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 16px;
}

.reel {
    width: 54px;
    height: 68px;
    background: linear-gradient(180deg, #1a1a00, #2a2000);
    border: 2px solid var(--yellow-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--yellow);
    box-shadow: 0 0 12px rgba(255,215,0,0.3), inset 0 2px 4px rgba(0,0,0,0.5);
    animation: spin-reel 0.8s ease-in-out infinite;
}

.reel-2 { animation-delay: 0.1s; }
.reel-3 { animation-delay: 0.2s; }

@keyframes spin-reel {
    0%, 80%, 100% { transform: scaleY(1); }
    40% { transform: scaleY(0.95); box-shadow: 0 0 20px rgba(255,215,0,0.6); }
}

.game-win { margin-top: 8px; }
.win-amount {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: win-bounce 1s ease-in-out infinite;
}

@keyframes win-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.floating-chips {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.chip {
    position: absolute;
    font-size: 1.6rem;
    animation: chip-float linear infinite;
    opacity: 0.8;
}

.chip-1 { top: 10%; left: 5%; animation-duration: 4s; animation-delay: 0s; }
.chip-2 { top: 20%; right: 5%; animation-duration: 5s; animation-delay: 1s; }
.chip-3 { bottom: 30%; left: 0%; animation-duration: 4.5s; animation-delay: 0.5s; }
.chip-4 { bottom: 10%; right: 8%; animation-duration: 3.5s; animation-delay: 1.5s; }

@keyframes chip-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-dot {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255,215,0,0.4);
    border-radius: 14px;
    position: relative;
}

.scroll-dot::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--yellow);
    border-radius: 2px;
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% { top: 6px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* ===== ABOUT / FEATURES ===== */
.about {
    background: linear-gradient(180deg, #080808, #0d0d0d);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
}

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

.feature-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-yellow);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(255,215,0,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255,215,0,0.1);
    background: var(--black-card2);
}

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

.feature-card.featured {
    border-color: rgba(255,215,0,0.3);
    background: linear-gradient(145deg, #111100, #0f0f0a);
}

.feature-card.featured::before { opacity: 1; }

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--yellow);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(255,215,0,0.2);
    box-shadow: 0 0 20px rgba(255,215,0,0.3);
    transform: rotate(10deg);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== GAMES ===== */
.games {
    background: var(--black);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.game-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.game-card:hover {
    border-color: rgba(255,215,0,0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.game-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.game-image.slot { background: linear-gradient(135deg, #1a0a00, #2d1500); color: var(--yellow); }
.game-image.live { background: linear-gradient(135deg, #001a0a, #002d15); color: #22c55e; }
.game-image.sports { background: linear-gradient(135deg, #00081a, #00152d); color: #60a5fa; }
.game-image.fishing { background: linear-gradient(135deg, #001015, #002030); color: #22d3ee; }
.game-image.esports { background: linear-gradient(135deg, #0a001a, #15002d); color: #c084fc; }
.game-image.cockfight { background: linear-gradient(135deg, #1a0000, #2d0505); color: #f87171; }

.game-image i { transition: var(--transition); }
.game-card:hover .game-image i { transform: scale(1.2); }

.game-info { padding: 20px; }

.game-info h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.game-info p {
    font-size: 0.825rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.game-count {
    display: inline-block;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.25);
    color: var(--yellow);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* ===== PRICING ===== */
.pricing {
    background: linear-gradient(180deg, #0d0d0d, #080808);
    position: relative;
}

.pricing-card {
    background: var(--black-card);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-bottom: 32px;
}

.pricing-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Setup Fees */
.setup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.setup-item {
    background: var(--black-card2);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.setup-item:hover {
    border-color: rgba(255,215,0,0.2);
}

.setup-name {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.setup-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.price-yellow { color: var(--yellow); }
.included {
    color: var(--green);
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.2);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Monthly Maintenance */
.maintenance-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.maintenance-price {
    text-align: center;
    min-width: 120px;
}

.maintenance-price .price {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.maintenance-price .currency {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 4px;
}

.maintenance-features {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.maintenance-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.maintenance-features li i {
    color: var(--green);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Tabs */
.tabs-wrapper {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tabs-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    white-space: nowrap;
}

.currency-tabs, .game-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.tab-btn, .game-tab-btn {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    padding: 9px 18px;
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover, .game-tab-btn:hover {
    border-color: rgba(255,215,0,0.3);
    color: var(--yellow-light);
}

.tab-btn.active, .game-tab-btn.active {
    background: var(--gradient-yellow);
    border-color: var(--yellow);
    color: var(--black);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

/* Pricing Tables */
.pricing-table { display: none; }
.pricing-table.active { display: block; }

.table-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 16px;
    padding: 12px 16px;
    background: rgba(255,215,0,0.05);
    border-left: 3px solid var(--yellow);
    border-radius: 0 6px 6px 0;
}

.table-responsive { overflow-x: auto; }

.pricing-tables table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.pricing-tables thead tr {
    background: rgba(255,215,0,0.08);
    border-bottom: 2px solid rgba(255,215,0,0.2);
}

.pricing-tables th {
    padding: 12px 16px;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--yellow);
    white-space: nowrap;
}

.pricing-tables td {
    padding: 10px 16px;
    color: var(--gray-light);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.pricing-tables tr:hover td {
    background: rgba(255,215,0,0.04);
    color: var(--white);
}

.pricing-tables tr:last-child td { border-bottom: none; }

.pricing-tables td:first-child {
    color: var(--white);
    font-weight: 500;
}

.pricing-tables td:not(:first-child) {
    color: var(--yellow-deep);
    font-weight: 600;
    font-family: var(--font-heading);
}

.pricing-tables small { color: var(--gray); font-size: 0.7rem; }

.currency-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255,165,0,0.07);
    border: 1px solid rgba(255,165,0,0.2);
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: var(--gray-light);
}

.currency-note i {
    color: var(--yellow-deep);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Additional Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.service-item {
    background: var(--black-card2);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.service-item:hover { border-color: rgba(255,215,0,0.2); }

.service-name {
    font-size: 0.875rem;
    color: var(--gray-light);
}

.service-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    color: var(--yellow);
}

/* ===== PAYMENT ===== */
.payment { background: var(--black); }

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.payment-category {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--border-radius);
    padding: 28px;
    transition: var(--transition);
}

.payment-category:hover {
    border-color: rgba(255,215,0,0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.payment-category h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--black-card2);
    border-radius: 6px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.payment-method:hover {
    border-color: rgba(255,215,0,0.15);
}

.method-name {
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 500;
}

.method-rate {
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 3px 10px;
    border-radius: 12px;
}

.rate-low {
    background: rgba(34,197,94,0.1);
    color: var(--green);
    border: 1px solid rgba(34,197,94,0.2);
}

.rate-high {
    background: rgba(239,68,68,0.1);
    color: var(--red);
    border: 1px solid rgba(239,68,68,0.2);
}

/* ===== CONTACT ===== */
.contact {
    background: linear-gradient(180deg, #0d0d0d, #080808);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--border-radius);
    padding: 18px 22px;
    transition: var(--transition);
    cursor: pointer;
}

.contact-card:hover {
    border-color: rgba(255,215,0,0.4);
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.1);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--yellow);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: rgba(255,215,0,0.2);
    box-shadow: 0 0 15px rgba(255,215,0,0.3);
}

.contact-details h3 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 2px;
}

.contact-details p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--black-card);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: var(--border-radius);
    padding: 36px;
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--black-card2);
    border: 1px solid var(--black-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group select option {
    background: var(--black-card2);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 0 0 3px rgba(255,215,0,0.08);
    background: rgba(26,26,0,0.5);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
.footer {
    background: #050505;
    border-top: 1px solid rgba(255,215,0,0.1);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .logo {
    display: block;
    margin-bottom: 14px;
    font-size: 1.5rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(255,215,0,0.15);
    border-color: rgba(255,215,0,0.3);
    color: var(--yellow);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links ul li a {
    font-size: 0.85rem;
    color: var(--gray);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--yellow);
    padding-left: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray);
}

.footer-note {
    color: rgba(255,215,0,0.5) !important;
    font-style: italic;
}

/* ===== FLOATING BUTTONS ===== */
/* ===== FLOATING BUTTONS ===== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.float-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Tooltip */
.float-tooltip {
    position: absolute;
    right: 68px;
    background: #111;
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--white);
    font-size: 0.75rem;
    font-family: var(--font-body);
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.float-tooltip::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(255,215,0,0.3);
}

.float-item:hover .float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Button */
.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    position: relative;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
}

/* WhatsApp */
.float-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.float-btn.whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

/* Pulse ring on WhatsApp */
.float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid #25D366;
    animation: waPulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.8; }
    70%  { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
}

/* Line */
.float-btn.line {
    background: #00B900;
    color: #fff;
}

.float-btn.line:hover {
    background: #009900;
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(0,185,0,0.5);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: rgba(255,215,0,0.15);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 50%;
    color: var(--yellow);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: none;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible { display: flex; }
.back-to-top:hover {
    background: rgba(255,215,0,0.3);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }
.animate-fade-left { animation: fadeInLeft 0.6s ease forwards; }
.animate-fade-right { animation: fadeInRight 0.6s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .games-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .lang-bar-label { font-size: 0.72rem; }
    .lang-name { display: none; }
    .lang-btn { padding: 4px 6px; }

    .navbar .container { height: 60px; }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        border-right: 1px solid rgba(255,215,0,0.15);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        transition: left 0.3s ease;
        z-index: 1100;
        padding: 40px 30px;
    }

    .nav-links.open { left: 0; }

    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 16px;
        display: block;
    }

    .hamburger { display: flex; z-index: 1200; }
    .nav-cta { display: none; }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 20px 40px;
        gap: 40px;
    }

    .hero-stats { justify-content: center; }
    .stat { text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-subtitle { margin: 0 auto 36px; }

    .hero-image { order: -1; }
    .phone-mockup { width: 180px; height: 360px; }

    .features-grid { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: 1fr; }

    .setup-grid { grid-template-columns: 1fr; }
    .maintenance-content { flex-direction: column; }
    .maintenance-features { grid-template-columns: 1fr; }

    .payment-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }

    .hero-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .game-tabs {
        gap: 6px;
    }
    .game-tab-btn {
        padding: 7px 12px;
        font-size: 0.78rem;
    }
    .tab-btn {
        padding: 7px 12px;
        font-size: 0.8rem;
    }
    .pricing-card { padding: 20px 16px; }
    .contact-form-wrapper { padding: 24px 18px; }

    .stat-number { font-size: 1.6rem; }
    .hero-stats { gap: 20px; }
}

/* ===== RTL Support ===== */
[dir="rtl"] .nav-links { left: auto; right: -100%; border-right: none; border-left: 1px solid rgba(255,215,0,0.15); }
[dir="rtl"] .nav-links.open { right: 0; left: auto; }
[dir="rtl"] .contact-card:hover { transform: translateX(-6px); }
[dir="rtl"] .footer-links ul li a:hover { padding-left: 0; padding-right: 6px; }
[dir="rtl"] .table-title { border-left: none; border-right: 3px solid var(--yellow); border-radius: 6px 0 0 6px; }
[dir="rtl"] .lang-dropdown-menu { left: auto; right: 0; }
[dir="rtl"] .lang-dropdown-trigger { flex-direction: row-reverse; }
[dir="rtl"] .lang-trigger-name { text-align: right; }

/* ===== GLOW EFFECTS ===== */
.glow-yellow { text-shadow: 0 0 20px rgba(255,215,0,0.5); }
.glow-box { box-shadow: 0 0 30px rgba(255,215,0,0.2); }

/* ===== RESPONSIVE DROPDOWN ===== */
@media (max-width: 480px) {
    .lang-dropdown-trigger { min-width: 130px; padding: 5px 10px 5px 8px; }
    .lang-trigger-name { font-size: 0.78rem; }
    .lang-dropdown-menu { min-width: 160px; }
    .lang-option { padding: 9px 12px; font-size: 0.82rem; }
}
