/* CSS Variables */
:root {
    --primary-black: #0a0a0a;
    --primary-gold: #FFD700;
    --accent-gold: #FFA500;
    --dark-gold: #CC9900;
    --pure-white: #ffffff;
    --text-gray: #cccccc;
    --dark-gray: #1a1a1a;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--primary-black);
    color: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundMove 20s ease-in-out infinite alternate;
}

@keyframes backgroundMove {
    0% { transform: translateX(0) rotate(0deg); }
    100% { transform: translateX(-20px) rotate(1deg); }
}

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

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

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

/* Новая структура хедера */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 5px 0;
    gap: 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 24px;
    color: var(--primary-gold);
    text-decoration: none;
}

.logo svg {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.logo-text {
    margin-left: 10px;
    font-size: 18px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.15);
}

.nav-link.active::after {
    width: 80%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: center;
}

.mobile-nav-list li {
    margin: 20px 0;
}

.mobile-nav-link {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 12px;
    transition: var(--transition);
    display: block;
}

.mobile-nav-link:hover {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.mobile-nav-link.active {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.15);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
}

.mobile-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 30px;
    font-size: 16px;
}

.nav {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0 15px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

.balance {
    background: rgba(255, 215, 0, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.balance span {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 120px;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-black);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

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

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.btn-mega {
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 30px;
    box-shadow: var(--shadow-gold);
    animation: megaPulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes megaPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: var(--shadow-gold);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

.btn-mega:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
    animation-play-state: paused;
}

.btn-secondary-large {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
}

.btn-secondary-large:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

/* Pulse Animation */
.pulse {
    animation: buttonPulse 1.5s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* Hero Banner */
.hero-banner {
    position: relative;
    background: var(--gradient-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 70% 60%, rgba(255, 165, 0, 0.1) 0%, transparent 70%),
        linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 50px 0;
}

.welcome-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: slideInLeft 1s ease-out;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.banner-text p {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.casino-name {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 20px;
    animation: slideInLeft 1s ease-out 0.4s both;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.bonus-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius);
    transition: var(--transition);
    animation: slideInUp 1s ease-out 0.8s both;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.15);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.feature-title {
    display: block;
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    animation: slideInLeft 1s ease-out 1s both;
}

.banner-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideInRight 1s ease-out 0.5s both;
}

.casino-cards {
    position: relative;
    width: 300px;
    height: 200px;
}

.card-item {
    position: absolute;
    width: 120px;
    height: 180px;
    background: var(--gradient-dark);
    border: 3px solid var(--primary-gold);
    border-radius: 15px;
    box-shadow: var(--shadow-gold);
}

.card-1 {
    top: 0;
    left: 0;
    z-index: 3;
    animation: cardFloat 3s ease-in-out infinite;
}

.card-2 {
    top: 20px;
    left: 60px;
    z-index: 2;
    animation: cardFloat 3s ease-in-out infinite 1s;
}

.card-3 {
    top: 40px;
    left: 120px;
    z-index: 1;
    animation: cardFloat 3s ease-in-out infinite 2s;
}

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

.chips-stack {
    position: absolute;
    bottom: -20px;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: -5px;
}

.chip {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    animation: chipSpin 4s linear infinite;
}

.chip-1 {
    background: var(--gradient-gold);
    color: var(--primary-black);
    z-index: 3;
}

.chip-2 {
    background: var(--gradient-dark);
    color: var(--primary-gold);
    z-index: 2;
    margin-top: -10px;
}

.chip-3 {
    background: var(--gradient-gold);
    color: var(--primary-black);
    z-index: 1;
    margin-top: -10px;
}

@keyframes chipSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .bonus-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Navigation responsive breakpoint at 1000px */
@media (max-width: 1000px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-actions {
        display: none;
    }
    
    .header-top {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .banner-visual {
        transform: scale(0.8);
    }
    
    .mobile-nav-link {
        font-size: 20px;
    }
    
    .mobile-actions .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .banner-content {
        padding: 50px 0;
    }
    
    .feature-item {
        padding: 15px 10px;
    }
    
    .banner-visual {
        transform: scale(0.6);
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
        min-width: 100px;
    }
    
    .btn-mega {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .mobile-nav-link {
        font-size: 18px;
        padding: 12px 25px;
    }
    
    .mobile-actions .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .hamburger-line {
        width: 22px;
        height: 2px;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Main Title Section */
.main-title-section {
    padding: 60px 0;
    background: rgba(26, 26, 26, 0.8);
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.main-title-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3)); }
    100% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6)); }
}

/* Casino Description Section */
.casino-description {
    padding: 60px 0;
    background: var(--primary-black);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.description-content {
    max-width: 900px;
    margin: 0 auto;
}

.description-content p {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.description-content p:last-child {
    margin-bottom: 0;
}

/* Games Description Section */
.games-description {
    padding: 70px 0;
    background: rgba(26, 26, 26, 0.8);
    position: relative;
}

.games-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 60% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 20% 70%, rgba(255, 165, 0, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.games-description h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.games-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.games-content p {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.games-content p:last-child {
    margin-bottom: 0;
}

/* Bonuses Description Section */
.bonuses-description {
    padding: 70px 0;
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.bonuses-description::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.bonuses-description::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.bonuses-description h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bonuses-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-left: 2px solid rgba(255, 215, 0, 0.2);
    padding-left: 25px;
}

.bonus-image {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
}

.bonus-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, transparent 100%);
    z-index: 1;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.bonus-image:hover::before {
    opacity: 0.2;
}

.bonus-banner {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.bonus-image:hover .bonus-banner {
    transform: scale(1.03);
}

.bonuses-content p {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
}

.bonuses-content p:last-child {
    margin-bottom: 0;
}

.bonuses-content p strong {
    color: var(--primary-gold);
    font-weight: 700;
}

@media (max-width: 768px) {
    .bonuses-content {
        padding-left: 15px;
    }
    
    .bonus-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .bonuses-content {
        border-left: none;
        padding-left: 0;
    }
    
    .bonus-image {
        margin-left: -10px;
        margin-right: -10px;
        border-radius: 0;
    }
}

/* Access Section */
.access-description {
    padding: 70px 0;
    background: rgba(26, 26, 26, 0.8);
    position: relative;
}

.access-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 10% 60%, rgba(255, 165, 0, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.access-description h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.access-content {
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.access-content p {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.access-content p:last-child {
    margin-bottom: 0;
}

/* Casino Table Styles */
.casino-table {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.casino-table h3 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: var(--pure-white);
}

.table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
}

.casino-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    overflow: hidden;
}

.casino-table th {
    background: var(--gradient-gold);
    color: var(--primary-black);
    font-weight: 700;
    text-align: left;
    padding: 15px 20px;
    font-size: 18px;
}

.casino-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-gray);
    font-size: 16px;
}

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

.casino-table tr:nth-child(even) {
    background: rgba(255, 215, 0, 0.03);
}

.casino-table tr:hover td {
    background: rgba(255, 215, 0, 0.05);
}

/* Advantages Styles */
.advantages {
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.advantages h3 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: var(--pure-white);
}

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

.advantages li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.advantages li:last-child {
    border-bottom: none;
}

.advantages li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 18px;
}

/* Conclusion */
.conclusion {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: rgba(255, 215, 0, 0.05);
    border-radius: var(--border-radius);
    padding: 25px 30px;
    border-left: 3px solid var(--primary-gold);
}

.conclusion p {
    color: var(--pure-white);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
    text-align: justify;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .casino-table th,
    .casino-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .advantages li {
        font-size: 16px;
        padding-left: 30px;
    }
    
    .conclusion {
        padding: 20px;
    }
    
    .conclusion p {
        font-size: 16px;
    }
    
    .access-content p,
    .casino-table h3,
    .advantages h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .table-wrapper {
        margin: 0 -10px;
        width: calc(100% + 20px);
        border-radius: 0;
    }
    
    .casino-table th,
    .casino-table td {
        padding: 10px;
        font-size: 12px;
    }
    
    .advantages li {
        font-size: 14px;
        padding-left: 25px;
    }
    
    .advantages li::before {
        font-size: 14px;
    }
    
    .conclusion {
        padding: 15px;
    }
    
    .conclusion p {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: var(--primary-black);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 60px 0 30px;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 20px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-logo span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Support Section */
.support-section {
    background: var(--dark-gray);
    padding: 80px 0;
    position: relative;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.support-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.support-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.support-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
    text-align: center;
}

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

.support-method {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
}

.support-method:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.support-method h3 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.support-method p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

.support-content > p:last-child {
    margin-top: 40px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .support-section {
        padding: 60px 0;
    }
    
    .support-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .support-methods {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .support-method {
        padding: 25px 20px;
    }
    
    .support-content > p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .support-section {
        padding: 40px 0;
    }
    
    .support-section h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .support-method {
        padding: 20px 15px;
    }
    
    .support-method h3 {
        font-size: 1.2rem;
    }
    
    .support-content > p {
        font-size: 0.95rem;
    }
} 