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

:root {
    --primary-color: #FF0066;
    --secondary-color: #E91E63;
    --dark-bg: #0A0A0A;
    --dark-section: #141414;
    --dark-card: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --border-color: #2A2A2A;
    --gradient-primary: linear-gradient(135deg, #FF0066 0%, #E91E63 100%);
    --gradient-secondary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--dark-section);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    margin: 0;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: var(--text-secondary);
}

.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs li.active {
    color: var(--text-primary);
}

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

.logo img {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

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

/* Mobile Navigation Toggle (hidden by default) */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
}

.mobile-nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.header-buttons {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

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

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

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

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 102, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Section Styling */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--dark-section);
}

h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

/* Cards */
.card {
    background-color: var(--dark-card);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.2);
}

/* Grid */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    margin: 30px 0;
}

thead {
    background: var(--gradient-primary);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    font-weight: 600;
    color: white;
}

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

tbody tr:hover {
    background-color: rgba(255, 0, 102, 0.05);
}

/* Lists */
ul, ol {
    margin: 20px 0;
    padding-left: 25px;
}

li {
    margin: 12px 0;
    color: var(--text-secondary);
}

li strong {
    color: var(--text-primary);
}

/* Banner */
.banner {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.banner p {
    font-size: 18px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background-color: var(--dark-section);
    padding: 50px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Header */
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }

    .logo img {
        height: 40px;
    }

    nav {
        display: none; /* Скрываем навигацию на мобилке полностью */
        flex-direction: column;
        gap: 0;
        text-align: center;
        width: 100%;
        background-color: var(--dark-section);
        border-radius: 8px;
        overflow: hidden;
        margin-top: 10px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
    }

    nav.active {
        display: flex; /* Показываем только при клике на бургер */
    }

    nav a {
        font-size: 14px;
        padding: 12px;
        border-bottom: 1px solid var(--border-color);
    }

    nav a:last-child {
        border-bottom: none;
    }

    /* Бургер-меню на мобилке */
    .mobile-nav-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 8px;
        background: transparent;
        border: none;
        margin-left: auto;
    }

    .mobile-nav-toggle span {
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .header-buttons {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    .header-buttons .btn {
        flex: 1;
        padding: 10px 15px;
        font-size: 14px;
    }

    /* Typography */
    h1 {
        font-size: 24px !important;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0 30px;
    }

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

    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 25px;
        font-size: 16px;
        width: 100%;
        display: block;
        text-align: center;
    }

    /* Sections */
    section {
        padding: 40px 0;
    }

    /* Grid */
    .grid {
        gap: 20px;
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }

    /* Cards */
    .card {
        padding: 20px;
    }

    .card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* Banner */
    .banner {
        padding: 25px 15px;
        margin: 30px 0;
        border-radius: 15px;
    }

    .banner h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .banner p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    /* Images */
    .hero-banner img,
    .bonus-promo-banner img,
    .slots-showcase img {
        border-radius: 12px !important;
        margin-top: 20px !important;
    }

    /* Tables */
    table {
        font-size: 12px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    th, td {
        padding: 8px 5px;
        min-width: 80px;
    }

    th {
        font-size: 12px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-top: 20px;
    }

    /* Lists */
    ul, ol {
        padding-left: 20px;
    }

    li {
        font-size: 14px;
        margin: 10px 0;
    }

    /* Utility classes for mobile */
    .mt-30 {
        margin-top: 20px !important;
    }

    .mb-30 {
        margin-bottom: 20px !important;
    }
}

/* Tablet landscape and small desktop */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }

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

    nav {
        gap: 20px;
    }

    nav a {
        font-size: 14px;
    }
}

/* Small phones (320px - 480px) */
@media (max-width: 480px) {
    h1 {
        font-size: 20px !important;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }

    .hero {
        padding: 30px 0 20px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 15px;
    }

    .card {
        padding: 15px;
    }

    .banner {
        padding: 20px 10px;
    }

    .banner h3 {
        font-size: 18px;
    }

    .banner p {
        font-size: 14px;
    }

    table {
        font-size: 11px;
    }

    th, td {
        padding: 6px 4px;
        min-width: 70px;
    }
}

/* Preloader */
.preloader {
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .banner {
    animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

/* FAQ Section */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.faq-item p {
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-item:hover {
    transform: translateX(10px);
}

/* Mobile-specific utilities */
.mobile-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Touch-friendly tap targets */
a, button, .btn {
    -webkit-tap-highlight-color: rgba(255, 0, 102, 0.2);
    touch-action: manipulation;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent text size adjustment on mobile */
body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Optimize images for mobile */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Better form inputs on mobile */
input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
}
