/* =====================================================
   LuckyBear Casino - Styles
   Modern dark theme matching official branding
   ===================================================== */

/* CSS Variables */
:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #0f1420;
    --bg-tertiary: #141a28;
    --bg-card: #171e2e;
    --bg-card-hover: #1c2438;
    
    --accent-primary: #4361ee;
    --accent-secondary: #3b5bdb;
    --accent-light: #5a7fff;
    --accent-glow: rgba(67, 97, 238, 0.3);
    
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #6b7688;
    
    --gold: #ffd700;
    --gold-light: #ffe44d;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(67, 97, 238, 0.3);
    
    --gradient-primary: linear-gradient(135deg, #4361ee 0%, #3b5bdb 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e17 0%, #0f1420 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(67, 97, 238, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --container-width: 1280px;
    --header-height: 72px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--accent-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-primary);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

strong {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(67, 97, 238, 0.1);
    color: var(--text-primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 17px;
}

.btn-block {
    width: 100%;
}

.btn-telegram {
    background: #229ED9;
    color: var(--text-primary);
}

.btn-telegram:hover {
    background: #1a8bc4;
    color: var(--text-primary);
}

.btn-google {
    background: #4285f4;
    color: var(--text-primary);
    padding: 12px 20px;
}

.btn-vk {
    background: #0077ff;
    color: var(--text-primary);
    padding: 12px 20px;
}

/* =====================================================
   Header
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-primary);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-lucky {
    color: var(--accent-light);
}

.logo-bear {
    color: var(--text-primary);
}

.logo-image {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 60px) 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(67, 97, 238, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(67, 97, 238, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 40%),
        var(--gradient-dark);
    z-index: -1;
}

.hero-banner {
    margin-bottom: 32px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    margin-bottom: 16px;
}

.hero-title-lucky {
    color: var(--accent-light);
    font-size: inherit;
}

.hero-title-bear {
    color: var(--text-primary);
    font-size: inherit;
}

.hero-subtitle {
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 12px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-coin {
    position: absolute;
    font-size: 32px;
    color: var(--gold);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.coin-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.coin-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* =====================================================
   Sections Common Styles
   ===================================================== */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(67, 97, 238, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

/* =====================================================
   About Section
   ===================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.feature-card {
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.feature-card h4 {
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.about-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    height: fit-content;
}

.info-card {
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.info-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.info-card h4 i {
    color: var(--accent-light);
}

.info-table {
    width: 100%;
}

.info-table tr {
    border-bottom: 1px solid var(--border-color);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 12px 0;
    font-size: 14px;
}

.info-table td:first-child {
    color: var(--text-muted);
}

.info-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--text-primary);
}

/* =====================================================
   Mirror Section
   ===================================================== */
.mirror-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.mirror-main p {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.mirror-box {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--accent-primary);
    box-shadow: var(--shadow-glow);
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.mirror-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--success);
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.mirror-link-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mirror-date {
    font-size: 13px;
    color: var(--text-muted);
}

.mirror-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mirror-link:hover {
    color: var(--gold);
}

.mirror-tips {
    padding: 24px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-primary);
    margin-top: 24px;
}

.mirror-tips h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.mirror-tips h4 i {
    color: var(--gold);
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
}

.tips-list li i {
    color: var(--success);
    margin-top: 4px;
}

.mirror-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.telegram-widget,
.support-widget {
    padding: 28px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.telegram-icon,
.support-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-primary);
}

.telegram-widget h4,
.support-widget h4 {
    margin-bottom: 8px;
}

.telegram-widget p,
.support-widget p {
    font-size: 14px;
    margin-bottom: 16px;
}

/* =====================================================
   Bonus Section
   ===================================================== */
.bonus-hero {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.bonus-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
}

.bonus-hero-content {
    position: relative;
    z-index: 1;
}

.bonus-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.bonus-percent {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--text-primary);
}

.bonus-plus {
    font-size: 2rem;
    color: var(--gold);
}

.bonus-fs {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gold);
}

.bonus-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.bonus-details p {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.bonus-table-wrapper {
    margin: 32px 0;
    overflow-x: auto;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.bonus-table th,
.bonus-table td {
    padding: 16px 20px;
    text-align: center;
}

.bonus-table th {
    background: var(--bg-tertiary);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-table td {
    border-bottom: 1px solid var(--border-color);
}

.bonus-table tr:last-child td {
    border-bottom: none;
}

.bonus-table strong {
    color: var(--accent-light);
    font-size: 1.125rem;
}

.deposit-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.other-bonuses {
    margin-top: 48px;
}

.other-bonuses h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.other-bonuses h3 i {
    color: var(--gold);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bonus-card {
    padding: 28px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.bonus-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.bonus-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
}

.bonus-card h4 {
    margin-bottom: 10px;
}

.bonus-card p {
    font-size: 14px;
    margin: 0;
}

/* =====================================================
   Login Section
   ===================================================== */
.login-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.login-info p {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.login-methods {
    margin: 32px 0;
}

.login-methods h4 {
    margin-bottom: 20px;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
    transition: var(--transition);
}

.method-card:hover {
    border-color: var(--accent-primary);
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.method-icon.telegram {
    background: #229ED9;
}

.method-icon.google {
    background: #4285f4;
}

.method-icon.vk {
    background: #0077ff;
}

.method-content h5 {
    margin-bottom: 4px;
}

.method-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.login-cta {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    height: fit-content;
}

.cta-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.cta-card h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.cta-card h4 i {
    color: var(--accent-light);
}

.cta-card > p {
    font-size: 14px;
    margin-bottom: 20px;
}

.cta-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
}

.cta-divider::before,
.cta-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.cta-divider span {
    font-size: 13px;
    color: var(--text-muted);
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.cta-buttons .btn {
    flex: 1;
    padding: 14px;
}

/* =====================================================
   Registration Section
   ===================================================== */
.registration-content {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

.registration-main p {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.steps-container {
    margin: 32px 0;
    padding: 28px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.steps-container h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.steps-container h4 i {
    color: var(--accent-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.step-card {
    display: flex;
    gap: 16px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h5 {
    margin-bottom: 6px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.registration-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--danger);
    margin-top: 24px;
}

.registration-note i {
    color: var(--danger);
    font-size: 18px;
    margin-top: 2px;
}

.registration-note p {
    font-size: 14px;
    margin: 0;
}

.registration-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    height: fit-content;
}

.reg-bonus-card {
    padding: 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.reg-bonus-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.reg-bonus-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    position: relative;
}

.reg-bonus-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
    position: relative;
}

.reg-bonus-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    position: relative;
}

.reg-bonus-card .btn {
    position: relative;
    background: var(--text-primary);
    color: var(--accent-primary);
}

.reg-bonus-card .btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.reg-features {
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.reg-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.reg-feature:last-child {
    border-bottom: none;
}

.reg-feature i {
    color: var(--success);
    font-size: 18px;
}

.reg-feature span {
    font-size: 14px;
    font-weight: 500;
}

/* =====================================================
   Payments Section
   ===================================================== */
.payments-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.payment-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.payment-category {
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.payment-category h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.payment-category h4 i {
    color: var(--accent-light);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.payment-method:hover {
    background: var(--bg-card-hover);
}

.payment-method small {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 6px;
    background: var(--success);
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-light);
}

.payment-icon.crypto {
    color: var(--gold);
}

.payment-method span {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.payments-table-wrapper {
    margin: 32px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.payments-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.payments-table-wrapper::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

.payments-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 4px;
}

.payments-table-wrapper h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.payments-table-wrapper h4 i {
    color: var(--accent-light);
}

.payments-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.payments-table th,
.payments-table td {
    padding: 16px 20px;
    text-align: left;
}

.payments-table th {
    background: var(--bg-tertiary);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payments-table td {
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.payments-table tr:last-child td {
    border-bottom: none;
}

/* =====================================================
   Games Section
   ===================================================== */
.games-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.game-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.game-category {
    padding: 28px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.game-category:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.category-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.game-category h4 {
    margin-bottom: 8px;
}

.game-category p {
    font-size: 14px;
    margin: 0;
}

.category-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    background: rgba(67, 97, 238, 0.2);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-light);
}

.games-content h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 40px 0 24px;
}

.games-content h3 i {
    color: var(--gold);
}

.popular-games {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.game-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.game-image {
    height: 120px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
}

.game-info {
    padding: 12px;
    text-align: center;
}

.game-info h5 {
    font-size: 13px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-info span {
    font-size: 11px;
    color: var(--text-muted);
}

.providers-section {
    margin-top: 60px;
}

.providers-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.providers-section h3 i {
    color: var(--accent-light);
}

.providers-section > p {
    margin-bottom: 24px;
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.provider-card {
    padding: 16px 24px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.provider-card:hover {
    border-color: var(--accent-primary);
    background: var(--bg-card-hover);
}

.provider-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* =====================================================
   Winners Section
   ===================================================== */
.winners-widget {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.winners-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.winner-tab {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.winner-tab:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.winner-tab.active {
    background: var(--gradient-primary);
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.winner-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.winner-item:hover {
    background: var(--bg-card-hover);
}

.winner-game {
    display: flex;
    align-items: center;
    gap: 12px;
}

.winner-game-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.winner-game span {
    font-weight: 500;
    font-size: 14px;
}

.winner-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.winner-name {
    font-size: 13px;
    color: var(--text-muted);
}

.winner-mult {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-light);
}

.winner-amount {
    text-align: right;
    font-weight: 700;
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.winner-amount i {
    color: var(--gold);
}

.winners-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-muted);
}

.winners-note i {
    color: var(--accent-light);
}

/* =====================================================
   Calculator Section
   ===================================================== */
.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.calculator-widget {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.calc-input-group {
    margin-bottom: 20px;
}

.calc-input-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.calc-input-group input,
.calc-input-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.calc-input-group input:focus,
.calc-input-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.calc-input-group select {
    cursor: pointer;
}

.calculator-widget .btn {
    width: 100%;
    margin-bottom: 24px;
}

.calc-result {
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.result-row:last-child {
    border-bottom: none;
}

.result-row span {
    color: var(--text-muted);
    font-size: 14px;
}

.result-row strong {
    font-size: 15px;
}

.result-row.highlight {
    background: rgba(67, 97, 238, 0.1);
    margin: 8px -20px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: none;
}

.result-row.highlight strong {
    color: var(--accent-light);
    font-size: 1.25rem;
}

.calculator-info h4 {
    margin-bottom: 16px;
}

.calculator-info p {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.calculator-info ul {
    margin-top: 16px;
}

.calculator-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-secondary);
}

.calculator-info li::before {
    content: '•';
    color: var(--accent-light);
    font-weight: bold;
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    color: var(--accent-light);
    font-size: 14px;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand > p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
}

.social-link.telegram:hover {
    background: #229ED9;
}

.social-link.vk:hover {
    background: #0077ff;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-column a:hover {
    color: var(--accent-light);
}

.footer-column a i {
    font-size: 16px;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.footer-payments span {
    font-size: 14px;
    color: var(--text-muted);
}

.payment-icons {
    display: flex;
    gap: 16px;
}

.payment-icons i {
    font-size: 24px;
    color: var(--text-secondary);
    opacity: 0.7;
}

.footer-bottom {
    padding-top: 24px;
}

.footer-bottom > p {
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 16px;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal > span {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-legal-links a:hover {
    color: var(--accent-light);
}

/* =====================================================
   Back to Top Button
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 1200px) {
    .about-grid,
    .mirror-content,
    .login-content,
    .registration-content {
        grid-template-columns: 1fr;
    }
    
    .about-sidebar,
    .mirror-aside,
    .login-cta,
    .registration-sidebar {
        position: static;
    }
    
    .mirror-aside {
        flex-direction: row;
    }
    
    .telegram-widget,
    .support-widget {
        flex: 1;
    }
    
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .popular-games {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .nav.active {
        display: flex;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
    }
    
    .nav.active .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav.active .nav-link {
        display: block;
        padding: 12px 16px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-categories {
        grid-template-columns: 1fr;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .header-actions .btn-outline {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .popular-games {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-categories {
        grid-template-columns: 1fr;
    }
    
    .mirror-aside {
        flex-direction: column;
    }
    
    .winner-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .winner-amount {
        justify-content: flex-start;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-payments {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .bonus-hero {
        padding: 32px 20px;
    }
    
    .bonus-table th,
    .bonus-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .payments-table {
        font-size: 13px;
    }
    
    .payments-table th,
    .payments-table td {
        padding: 12px 10px;
    }
    
    .popular-games {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 16px 16px;
    }
}

