@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1e1e2a;
    --accent-pink: #ff2d78;
    --accent-pink-dark: #cc1a5e;
    --accent-cyan: #00e5ff;
    --accent-purple: #8b5cf6;
    --accent-gold: #fbbf24;
    --accent-green: #10b981;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: rgba(255, 255, 255, 0.06);
    --glass-bg: rgba(22, 22, 31, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --gradient-pink: linear-gradient(135deg, #ff2d78, #ff6b9d);
    --gradient-purple: linear-gradient(135deg, #8b5cf6, #a78bfa);
    --gradient-cyan: linear-gradient(135deg, #00e5ff, #00b8d4);
    --shadow-glow: 0 0 30px rgba(255, 45, 120, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.wrapper {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #030307;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 45, 120, 0.35);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.5px;
    cursor: pointer;
}

.logo .cosmo {
    color: #15e8ff;
}

.logo .bet {
    color: #ff2d78;
}

.logo .star {
    color: #15e8ff;
    font-size: 11px;
    position: relative;
    top: -8px;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.forgot-link {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 2px;
}

.forgot-link:hover {
    color: #ffffff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 10px;
    text-transform: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-pink);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 45, 120, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 45, 120, 0.5);
}

.btn-signup {
    background: #ff2d78;
    color: white;
    box-shadow: 0 2px 12px rgba(255, 45, 120, 0.35);
}

.btn-signup:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 45, 120, 0.45);
    background: #ff4b8e;
}

.btn-login {
    background: #13d9ff;
    color: #061018;
    box-shadow: 0 2px 12px rgba(19, 217, 255, 0.35);
}

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(19, 217, 255, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

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

.btn-green {
    background: var(--accent-green);
    color: white;
}

.btn-green:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.lang-select {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.lang-select:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

header nav {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 45, 120, 0.45);
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-list::-webkit-scrollbar {
    display: none;
}

.nav-list a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #ff2d78;
    transition: var(--transition);
    border-radius: 2px;
}

.nav-list a:hover {
    color: var(--text-primary);
}

.nav-list a:hover::after {
    width: 70%;
}

.nav-list a.active {
    color: #ffffff;
}

.nav-list a.active::after {
    width: 60%;
}

.nav-with-badge {
    position: relative;
}

.menu-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ff2d78;
    color: #fff;
    font-size: 8px;
    line-height: 1;
    border-radius: 10px;
    padding: 3px 5px;
    font-weight: 700;
}

.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    margin-top: 110px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.6) 50%, rgba(10, 10, 15, 0.3) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 45, 120, 0.15);
    border: 1px solid rgba(255, 45, 120, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent-pink);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title span {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-dots {
    display: flex;
    gap: 8px;
    margin-top: 40px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.hero-dots span.active {
    background: var(--accent-pink);
    width: 24px;
    border-radius: 4px;
}

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.hero-arrow:hover {
    background: rgba(255, 45, 120, 0.3);
    border-color: var(--accent-pink);
}

.hero-arrow svg {
    width: 18px;
    height: 18px;
}

.categories {
    padding: 50px 0 40px;
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
    padding: 16px 14px;
    background: var(--bg-card);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    min-width: 150px;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 35%, rgba(4, 8, 18, 0.92) 100%);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(255, 45, 120, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-6px);
    background-color: var(--bg-card-hover);
    box-shadow: 0 10px 40px rgba(255, 45, 120, 0.1);
}

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

.category-icon {
    display: none;
}

.category-card:hover .category-icon {
    background: radial-gradient(circle, rgba(0, 229, 255, 0.18) 0%, transparent 70%);
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.4));
}

.category-icon svg {
    display: none;
}

.category-card .label {
    position: relative;
    z-index: 2;
    font-size: 24px;
    line-height: 1.05;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-style: italic;
    color: #ffffff;
    transition: var(--transition);
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.7);
}

.category-card:hover .label {
    color: #ffffff;
}

.categories-grid .category-card:nth-child(1) { background-image: url('category/sports.png'); }
.categories-grid .category-card:nth-child(2) { background-image: url('category/casino.png'); }
.categories-grid .category-card:nth-child(3) { background-image: url('category/mini-games.png'); }
.categories-grid .category-card:nth-child(4) { background-image: url('category/live-casino.png'); }
.categories-grid .category-card:nth-child(5) { background-image: url('category/e-sports.png'); }
.categories-grid .category-card:nth-child(6) { background-image: url('category/card-games.png'); }

section {
    padding: 50px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.section-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.view-more {
    color: var(--accent-cyan);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.view-more:hover {
    color: var(--accent-pink);
}

.arrow-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.arrow-btn:hover {
    background: var(--accent-pink);
    color: white;
    border-color: var(--accent-pink);
}

.arrow-btn svg {
    width: 16px;
    height: 16px;
}

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

.game-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    background: var(--bg-card);
    transition: var(--transition);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

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

.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-overlay .game-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.game-overlay .game-provider {
    font-size: 11px;
    color: var(--text-muted);
}

.game-overlay .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--accent-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 45, 120, 0.5);
}

.game-overlay .play-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
    margin-left: 3px;
}

.bonus-section {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 45, 120, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-pink);
    transform: scaleX(0);
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 120, 0.2);
    box-shadow: var(--shadow-glow);
}

.bonus-card:hover::after {
    transform: scaleX(1);
}

.bonus-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 45, 120, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.bonus-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent-pink);
}

.bonus-card .title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bonus-card .desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bonus-card .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-purple);
}

.feature-card .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card .desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.app-banner {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: var(--radius-xl);
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.app-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1), transparent 70%);
}

.app-info {
    flex: 1;
}

.app-info .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-cyan);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
}

.app-info .title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 14px;
}

.app-info .desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.app-stores {
    display: flex;
    gap: 14px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
}

.store-btn svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
}

.store-btn .store-text {
    display: flex;
    flex-direction: column;
}

.store-btn .store-text .small {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.store-btn .store-text .name {
    font-size: 15px;
    font-weight: 600;
}

.app-visual {
    flex: 0 0 auto;
    position: relative;
}

.app-mobile-image {
    width: min(320px, 100%);
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.app-phone-mockup {
    width: 220px;
    height: 440px;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
    border-radius: 30px;
    border: 2px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.app-phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: var(--bg-primary);
    border-radius: 12px;
    z-index: 2;
}

.app-phone-screen {
    position: absolute;
    inset: 4px;
    border-radius: 26px;
    overflow: hidden;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-phone-screen svg {
    width: 80px;
    height: 80px;
    color: var(--accent-pink);
    opacity: 0.5;
}

.payments-section {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 35px 0;
}

.payments-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-logo {
    height: 32px;
    width: auto;
    min-width: 60px;
    opacity: 0.7;
    transition: var(--transition);
}

.payment-logo:hover {
    opacity: 1;
}

.providers-section {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.providers-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.provider-logo {
    height: 30px;
    width: auto;
    min-width: 100px;
    opacity: 0.6;
    transition: var(--transition);
}

.provider-logo:hover {
    opacity: 1;
}

.seo-content {
    padding: 60px 0;
}

.seo-content .content-area {
    max-width: 900px;
}

.seo-content .content-area h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.seo-content .content-area h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    padding-left: 16px;
}

.seo-content .content-area h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--gradient-pink);
    border-radius: 2px;
}

.seo-content .content-area h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.seo-content .content-area h4 {
    font-size: 17px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--accent-cyan);
}

.seo-content .content-area p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-content .content-area a {
    color: var(--accent-cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}

.seo-content .content-area a:hover {
    color: var(--accent-pink);
}

.seo-content .content-area strong {
    color: var(--text-primary);
    font-weight: 600;
}

.seo-content .content-area em {
    color: var(--accent-gold);
    font-style: italic;
}

.seo-content .content-area ul {
    margin: 16px 0;
    padding-left: 0;
}

.seo-content .content-area ul li {
    position: relative;
    padding: 8px 0 8px 28px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.seo-content .content-area ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--accent-pink);
    border-radius: 50%;
}

.seo-content .content-area ol {
    margin: 16px 0;
    padding-left: 0;
    counter-reset: list-counter;
}

.seo-content .content-area ol li {
    position: relative;
    padding: 8px 0 8px 40px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    counter-increment: list-counter;
}

.seo-content .content-area ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 8px;
    width: 26px;
    height: 26px;
    background: rgba(255, 45, 120, 0.15);
    color: var(--accent-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.seo-content .content-area table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.seo-content .content-area table thead th {
    background: var(--bg-card);
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent-pink);
}

.seo-content .content-area table tbody td {
    padding: 12px 18px;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
    transition: var(--transition);
}

.seo-content .content-area table tbody tr:last-child td {
    border-bottom: none;
}

.seo-content .content-area table tbody tr:hover td {
    background: var(--bg-card);
    color: var(--text-primary);
}

.seo-content .content-area blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    background: rgba(139, 92, 246, 0.06);
    border-left: 4px solid var(--accent-purple);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--text-secondary);
    font-style: italic;
    font-size: 15px;
    line-height: 1.7;
}

footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-col .col-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 13px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-pink);
    padding-left: 4px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-pink);
    color: white;
    border-color: var(--accent-pink);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-warning {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
}

.footer-warning .age-badge {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: white;
}

.footer-warning .gamble-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-bottom-nav {
    display: none;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .app-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .app-info .desc {
        max-width: 100%;
    }

    .app-stores {
        justify-content: center;
    }

    .bonus-section {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    header nav {
        display: none;
    }

    .hero {
        min-height: 360px;
        margin-top: 78px;
        padding: 12px 0 0;
        background-position: center top;
    }

    .hero-title {
        font-size: 52px;
        font-style: italic;
        line-height: 0.95;
        margin-bottom: 10px;
    }

    .hero-content {
        max-width: 100%;
        padding: 28px 18px 26px;
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(5, 7, 15, 0.24) 0%, rgba(5, 7, 15, 0.72) 100%);
        text-align: center;
    }

    .hero-badge,
    .hero-arrows,
    .hero-dots {
        display: none;
    }

    .hero-subtitle {
        font-size: 12px;
        line-height: 1.35;
        max-width: 270px;
        margin: 0 auto 16px;
        color: rgba(255, 255, 255, 0.9);
    }

    .hero-actions {
        justify-content: center;
        gap: 10px;
    }

    .hero-actions .btn {
        min-width: 120px;
        border-radius: 10px;
        font-size: 14px;
        padding: 10px 14px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

    .categories {
        padding: 14px 0 30px;
        margin-top: 0;
    }

    .categories-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        justify-content: stretch;
    }

    .category-card {
        min-width: 0;
        width: 100%;
        aspect-ratio: 1 / 0.9;
        border-radius: 14px;
        padding: 0;
        justify-content: flex-end;
        align-items: center;
        overflow: hidden;
        border: 1px solid rgba(0, 229, 255, 0.2);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .category-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 30%, rgba(2, 5, 12, 0.9) 100%);
    }

    .category-card .label {
        position: relative;
        z-index: 2;
        font-size: 27px;
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-style: italic;
        color: #fff;
        margin-bottom: 10px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    }

    .category-icon {
        display: none;
    }

    .header-top {
        padding: 12px 0;
    }

    .logo {
        font-size: 28px;
    }

    .logo .cosmo,
    .logo .bet {
        display: none;
    }

    .logo .star {
        top: 0;
        font-size: 30px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-actions .btn {
        padding: 10px 18px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 700;
    }

    .lang-select,
    .forgot-link {
        display: none;
    }

    .payments-row {
        gap: 20px;
    }

    .payment-logo {
        height: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .seo-content .content-area h1 {
        font-size: 26px;
    }

    .seo-content .content-area h2,
    .section-title {
        font-size: 20px;
    }

    .bonus-section {
        padding: 30px 20px;
    }

    .app-phone-mockup {
        width: 180px;
        height: 360px;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
        background: #0a1019;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    }

    .mobile-bottom-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        color: rgba(255, 255, 255, 0.58);
        font-size: 11px;
        font-weight: 700;
        min-height: 50px;
    }

    .mobile-bottom-item svg {
        width: 19px;
        height: 19px;
    }

    .mobile-bottom-item.active {
        color: #00e5ff;
    }

    footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 46px;
    }

    .hero-subtitle {
        font-size: 11px;
    }

    .hero-actions {
        flex-direction: row;
    }

    .hero-actions .btn {
        width: auto;
    }

    .wrapper {
        padding: 0 12px;
    }

    .header-top {
        padding: 10px 0;
    }

    .logo {
        font-size: 24px;
    }

    .header-actions .btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .store-btn {
        padding: 10px 16px;
    }

    .app-banner {
        padding: 30px 20px;
    }

    .seo-content .content-area table {
        display: block;
        overflow-x: auto;
    }
}

.link-mask {
    color: inherit !important;
    text-decoration: none !important;
}

.link-mask:hover {
    color: inherit !important;
}

.link-mask::after {
    display: none !important;
}
