/* === BASE STYLES === */:root {
    --primary: #00d4ff;
    --secondary: #ff1744;
    --accent: #ffd700;
    --dark: #0a0e27;
    --dark-alt: #151b3d;
    --light: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    --gradient-secondary: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    --gradient-accent: linear-gradient(135deg, #ffd700 0%, #ffa000 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e27 0%, #151b3d 100%);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--accent);
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: rgba(248, 249, 250, 0.9);
}

.btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: #000;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.6);
    color: #000;
}

.card {
    background: var(--dark-alt);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

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

.content-image {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.content-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

.content-image figcaption {
    background: rgba(10, 14, 39, 0.95);
    padding: 15px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--accent);
    border-top: 2px solid var(--primary);
}

/* === LAYOUT STYLES === */
header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo a {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    transition: all 0.3s ease;
    display: inline-block;
}

.logo a:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9));
}

nav {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--light);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

header .cta-button {
    white-space: nowrap;
}

footer {
    background: var(--dark-alt);
    border-top: 3px solid var(--primary);
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(248, 249, 250, 0.8);
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: rgba(248, 249, 250, 0.7);
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: rgba(248, 249, 250, 0.6);
}

@media (max-width: 767px) {
    * {
        max-width: 100%;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    header .container {
        justify-content: space-between;
    }

    .logo {
        order: 1;
    }

    nav {
        order: 2;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 200px 30px 30px;
        gap: 20px;
        transition: right 0.4s ease;
        border-left: 2px solid var(--primary);
    }

    .nav-menu.active {
        right: 0;
    }

    header .cta-button {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    header .container {
        justify-content: space-between;
    }

    .logo {
        order: 1;
    }

    nav {
        order: 2;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 200px 30px 30px;
        gap: 20px;
        transition: right 0.4s ease;
        border-left: 2px solid var(--primary);
    }

    .nav-menu.active {
        right: 0;
    }

    header .cta-button {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 50px 0;
    }

    .bonuses, .login, .games, .strategies, .banking, .providers, .faq {
        padding: 50px 0;
    }

    .promo-block, .info-card, .feature-block, .highlight-box {
        padding: 30px 20px;
    }

    .strategy-item {
        padding: 30px 20px;
    }

    .strategy-item::before {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
    }

    .strategy-item h3 {
        margin-left: 0;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 12px 8px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .accordion-header {
        font-size: 1.1rem;
        padding: 20px;
    }

    .accordion-header::after {
        right: 20px;
        font-size: 1.5rem;
    }

    .toc-list {
        grid-template-columns: 1fr;
    }
}