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

/* Smooth scroll для всей страницы */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 20px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.logo-text {
    color: #FFD700;
}

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

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-list a:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.nav-list a.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.15);
}

/* Подчеркивание для активной ссылки */
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 80%;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: inherit;
    background: transparent;
}

.btn:hover, .btn:focus {
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #000;
}

.btn-secondary {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: #FFD700;
    border: 1px solid #FFD700;
}

.btn-secondary:hover, .btn-secondary:focus {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.btn-outline:hover, .btn-outline:focus {
    background: #FFD700;
    color: #000;
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 700;
}

/* Hero Section */
.hero {
    padding: 40px 0;
    background: linear-gradient(to right, #1a1a2e, #16213e);
    position: relative;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-banner:hover .hero-banner-img {
    transform: scale(1.02);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

@media (max-width: 768px) {
    .hero-banner {
        margin-bottom: 20px;
    }
    
    .hero-content {
        flex-direction: column;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.welcome-pack {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.welcome-pack-label {
    color: #FFD700;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.welcome-pack-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #fff;
}

.welcome-pack h3 {
    color: #FFD700;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.welcome-pack h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.highlight {
    color: #FFD700;
    display: block;
    font-size: 36px;
}

.promo-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #FFD700;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.promo-badge {
    background: #FFD700;
    color: #000;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.promo-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #FFD700;
}

.promo-date {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

.promo-prize {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 25px;
}

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

/* Popular Games */
.popular-games {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #FFD700;
    text-align: center;
}

/*
.view-all {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #FFA500;
}
*/

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.game-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.game-image {
    position: relative;
    height: 250px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-weight: 600;
    overflow: hidden;
    padding: 8px;
    border-radius: 15px 15px 0 0;
}

.game-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    background: transparent;
    border-radius: 6px;
}

.game-card:hover .game-image img {
    transform: none;
}

/* WebP image optimization */
@supports (image-set: type(image/webp)) {
    .game-image img {
        image-rendering: auto;
    }
}

/* Loading placeholder for images */
.game-image::before {
    display: none !important;
}

.game-image img:not([src=""]) + ::before,
.game-image img[src]:not([src=""]) ~ ::before {
    display: none !important;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.play-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover, .play-btn:focus {
    transform: scale(1.05);
    color: #000;
    text-decoration: none;
}

.game-info {
    padding: 15px;
}

.game-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.game-info p {
    color: #ccc;
    font-size: 14px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.about h2 {
    font-size: 32px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 40px;
    text-align: center;
}

.about h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    margin: 30px 0 20px 0;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
}

.benefits-list {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #ccc;
    font-size: 16px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 18px;
}

.games-categories {
    margin: 20px 0;
    padding-left: 20px;
}

.games-categories li {
    margin: 10px 0;
    color: #ccc;
    font-size: 16px;
}

.games-categories strong {
    color: #FFD700;
}

/* Bonus Table */
.bonus-table {
    padding: 80px 0;
    background: #0a0a0a;
}

.bonus-table h2 {
    font-size: 32px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 40px;
    text-align: center;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    min-width: 600px;
}

th {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 20px;
    font-weight: 700;
    text-align: left;
    font-size: 16px;
}

td {
    padding: 20px;
    border-bottom: 1px solid #333;
    color: #ccc;
    font-size: 16px;
    font-weight: 500;
}

tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.highlight-row {
    background: rgba(255, 215, 0, 0.1);
}

.highlight-row:hover {
    background: rgba(255, 215, 0, 0.15);
}

.highlight-row td {
    color: #FFD700;
    border-bottom: none;
    font-weight: 700;
    font-size: 17px;
}

/* Mobile Cards View */
.bonus-cards {
    display: none;
}

.bonus-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.bonus-card.highlight {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

.bonus-card-title {
    color: #FFD700;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.bonus-card.highlight .bonus-card-title {
    font-size: 22px;
    text-transform: uppercase;
}

.bonus-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.bonus-detail {
    text-align: center;
}

.bonus-detail-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.bonus-detail-value {
    font-size: 18px;
    font-weight: 600;
    color: #FFD700;
}

.bonus-card.highlight .bonus-detail-value {
    font-size: 20px;
    font-weight: 700;
}

/* Responsive Table */
@media (max-width: 1024px) {
    th, td {
        padding: 15px 12px;
        font-size: 14px;
    }
    
    table {
        min-width: 550px;
    }
}

@media (max-width: 768px) {
    .bonus-table h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .table-responsive {
        display: none;
    }
    
    .bonus-cards {
        display: block;
    }
    
    .bonus-card {
        padding: 20px;
    }
    
    .bonus-card h3 {
        font-size: 18px;
    }
    
    .bonus-card.highlight h3 {
        font-size: 20px;
    }
    
    .bonus-details {
        gap: 12px;
    }
    
    .bonus-detail-value {
        font-size: 16px;
    }
    
    .bonus-card.highlight .bonus-detail-value {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .bonus-table {
        padding: 60px 0;
    }
    
    .bonus-card {
        padding: 18px;
        margin-bottom: 15px;
    }
    
    .bonus-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bonus-detail {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        background: rgba(255, 215, 0, 0.05);
        border-radius: 8px;
    }
    
    .bonus-detail-label {
        margin-bottom: 0;
        font-size: 13px;
    }
    
    .bonus-detail-value {
        font-size: 15px;
    }
    
    .bonus-card.highlight .bonus-detail-value {
        font-size: 16px;
    }
}

/* Providers */
.providers {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.providers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23333" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.providers .container {
    position: relative;
    z-index: 2;
}

.providers h2 {
    font-size: 32px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
}

.providers-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.provider-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.provider-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: scale(0);
}

.provider-card:hover::before {
    transform: scale(1);
}

.provider-card:hover {
    border-color: #FFD700;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

.provider-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
}

.provider-card:hover .provider-logo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.provider-icon {
    font-size: 32px;
    filter: grayscale(100%) contrast(0);
    transition: all 0.3s ease;
}

.provider-card:hover .provider-icon {
    filter: none;
    transform: scale(1.1);
}

.provider-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.provider-card:hover h3 {
    color: #FFA500;
}

.provider-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.provider-card:hover p {
    color: #fff;
}

.provider-games {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.provider-card:hover .provider-games {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.provider-name {
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.provider-card:hover .provider-name {
    color: #FFA500;
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 20px 0;
    border-top: 1px solid #333;
}

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

.footer-section h3 {
    color: #FFD700;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    line-height: 1.5;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav, .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile Menu Active States */
    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        padding: 20px;
        border-top: 1px solid #333;
        z-index: 1000;
    }
    
    .nav.active .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-actions.active {
        display: flex;
        position: absolute;
        top: 100%;
        right: 20px;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }
    
    /* Burger Menu Animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .game-info {
        padding: 12px;
    }
    
    .welcome-pack, .promo-card {
        padding: 25px;
    }
    
    .welcome-pack h1 {
        font-size: 24px;
    }
    
    .highlight {
        font-size: 28px;
    }
    
    .promo-card h2 {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .about h2, .bonus-table h2, .providers h2 {
        font-size: 24px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    table {
        font-size: 14px;
    }
    
    th, td {
        padding: 15px 10px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .provider-card {
        padding: 25px 20px;
    }
    
    .provider-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .provider-icon {
        font-size: 24px;
    }
    
    .provider-card h3 {
        font-size: 18px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .popular-games, .about, .bonus-table, .providers {
        padding: 60px 0;
    }
    
    .welcome-pack, .promo-card {
        padding: 20px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-image {
        height: 200px;
        padding: 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 14px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.faq h2 {
    font-size: 32px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 40px;
    text-align: center;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq h2 {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-toggle {
        font-size: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

.game-card, .welcome-pack, .promo-card, .provider-card, .faq-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.game-card.animate-in, .welcome-pack.animate-in, .promo-card.animate-in, .provider-card.animate-in, .faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 165, 0, 0.08) 0%, transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 48px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.cta-text p {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.cta-icon {
    font-size: 20px;
}

.cta-feature span:last-child {
    color: #FFD700;
    font-weight: 600;
    font-size: 14px;
}

.cta-buttons {
    text-align: center;
}

.btn-cta {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-size: 20px;
    font-weight: 800;
    padding: 25px 50px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.btn-cta:hover::before, .btn-cta:focus::before {
    left: 100%;
}

.btn-cta:hover, .btn-cta:focus {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    color: #000;
    text-decoration: none;
}

.cta-disclaimer {
    margin-top: 15px;
    color: #666;
    font-size: 12px;
    opacity: 0.8;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 32px;
    }
    
    .cta-text p {
        font-size: 18px;
    }
    
    .cta-features {
        justify-content: center;
        gap: 15px;
    }
    
    .cta-feature {
        padding: 10px 15px;
    }
    
    .btn-cta {
        font-size: 18px;
        padding: 20px 40px;
    }
}

@media (max-width: 480px) {
    .cta-text h2 {
        font-size: 28px;
    }
    
    .cta-text p {
        font-size: 16px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        font-size: 16px;
        padding: 18px 35px;
    }
}

.game-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.about-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    margin: 30px 0 20px 0;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

/* Page Title Section */
.page-title {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
    position: relative;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
    animation: titleGlow 6s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

.page-title .container {
    position: relative;
    z-index: 2;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 4px 25px rgba(255, 215, 0, 0.4);
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 20px;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Page Title */
@media (max-width: 768px) {
    .page-title {
        padding: 50px 0;
    }
    
    .page-title h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-title {
        padding: 40px 0;
    }
    
    .page-title h1 {
        font-size: 24px;
        line-height: 1.4;
    }
    
    .page-subtitle {
        font-size: 15px;
    }
}

/* Main Content Section */
.main-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.2;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    margin-bottom: 60px;
    text-align: center;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.intro-text p:first-child {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.intro-text p:first-child::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.1;
}

.games-info {
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.games-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    border-radius: 20px 20px 0 0;
}

.games-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.games-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px;
}

.games-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.features-list {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #444;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
}

.features-list::before {
    content: '✨';
    position: absolute;
    top: -10px;
    left: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.features-list h3 {
    font-size: 22px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 25px;
    text-align: center;
}

.casino-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.casino-features li {
    background: rgba(255, 215, 0, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.casino-features li::before {
    content: '⭐';
    margin-right: 12px;
    color: #FFD700;
    font-size: 16px;
}

.casino-features li:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.casino-features li::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.1) 50%, transparent 100%);
    transition: right 0.6s ease;
}

.casino-features li:hover::after {
    right: 100%;
}

/* Responsive Design for Main Content */
@media (max-width: 768px) {
    .main-content {
        padding: 60px 0;
    }
    
    .intro-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .intro-text p:first-child {
        font-size: 18px;
        padding: 25px;
    }
    
    .games-info {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .games-info h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .features-list {
        padding: 25px 20px;
    }
    
    .features-list h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .casino-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .casino-features li {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 40px 0;
    }
    
    .intro-text p:first-child {
        font-size: 16px;
        padding: 20px;
    }
    
    .games-info {
        padding: 25px 15px;
    }
    
    .games-info h2 {
        font-size: 22px;
    }
    
    .games-info p {
        font-size: 15px;
    }
    
    .features-list {
        padding: 20px 15px;
    }
    
    .features-list h3 {
        font-size: 18px;
    }
    
    .casino-features li {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* Page Title */
.page-title {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.page-title .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 768px) {
    .page-title {
        padding: 40px 0 30px;
    }
    
    .page-title h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-title {
        padding: 30px 0 20px;
    }
    
    .page-title h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .page-subtitle {
        font-size: 15px;
    }
}

/* Mirror Section */
.mirror-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.mirror-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mirrors" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23mirrors)"/></svg>');
    opacity: 0.6;
}

.mirror-info {
    margin-bottom: 50px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.mirror-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 50%, #4CAF50 100%);
    border-radius: 20px 20px 0 0;
}

.mirror-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.mirror-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 100%);
    border-radius: 2px;
}

.mirror-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.mirror-sources {
    list-style: none;
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.mirror-sources li {
    background: rgba(76, 175, 80, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mirror-sources li::before {
    content: '🔗';
    margin-right: 12px;
    font-size: 16px;
}

.mirror-sources li:hover {
    background: rgba(76, 175, 80, 0.15);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.mirror-benefits {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #444;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
}

.mirror-benefits::before {
    content: '🔒';
    position: absolute;
    top: -10px;
    left: 30px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.mirror-benefits h3 {
    font-size: 22px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 25px;
    text-align: center;
}

.mirror-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.mirror-features li {
    background: rgba(76, 175, 80, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mirror-features li::before {
    content: '✓';
    margin-right: 12px;
    color: #4CAF50;
    font-size: 16px;
    font-weight: bold;
}

.mirror-features li:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

/* Bonuses Section */
.bonuses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.bonuses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.03) 0%, transparent 50%);
    animation: bonusGlow 10s ease-in-out infinite alternate;
}

@keyframes bonusGlow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.bonus-info {
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.bonus-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    border-radius: 20px 20px 0 0;
}

.bonus-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.bonus-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 2px;
}

.bonus-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.bonus-info strong {
    color: #FFD700;
    font-weight: 700;
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.promo-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-code-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #FFD700;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.promo-code-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: promoRotate 15s linear infinite;
}

@keyframes promoRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.promo-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    animation: promoBounce 2s ease-in-out infinite;
}

@keyframes promoBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.promo-code-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.promo-code {
    font-size: 32px;
    font-weight: 900;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    border: 2px dashed #FFD700;
    margin: 20px 0;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.promo-code:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.promo-code-card p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.promo-code-card .btn {
    position: relative;
    z-index: 2;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .mirror-section, .bonuses-section {
        padding: 60px 0;
    }
    
    .mirror-info, .bonus-info {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .mirror-info h2, .bonus-info h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .mirror-benefits {
        padding: 25px 20px;
    }
    
    .mirror-benefits h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .mirror-sources, .mirror-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .mirror-sources li, .mirror-features li {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .promo-code-card {
        padding: 30px 20px;
        max-width: 350px;
    }
    
    .promo-code {
        font-size: 24px;
        padding: 12px 20px;
    }
    
    .promo-icon {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .mirror-section, .bonuses-section {
        padding: 40px 0;
    }
    
    .mirror-info, .bonus-info {
        padding: 25px 15px;
    }
    
    .mirror-info h2, .bonus-info h2 {
        font-size: 22px;
    }
    
    .mirror-benefits {
        padding: 20px 15px;
    }
    
    .mirror-benefits h3 {
        font-size: 18px;
    }
    
    .mirror-sources li, .mirror-features li {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .promo-code-card {
        padding: 25px 15px;
        max-width: 300px;
    }
    
    .promo-code-card h3 {
        font-size: 20px;
    }
    
    .promo-code {
        font-size: 20px;
        padding: 10px 15px;
        letter-spacing: 1px;
    }
    
    .promo-icon {
        font-size: 32px;
    }
}

/* Additional Info Section */
.additional-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.additional-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,1 15,8.5 10,16 5,8.5" fill="none" stroke="%23333" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.4;
}

.additional-info .content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

/* Mobile App Info */
.mobile-app-info {
    margin-bottom: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.mobile-app-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2196F3 0%, #03A9F4 50%, #2196F3 100%);
    border-radius: 20px 20px 0 0;
}

.mobile-app-info::after {
    content: '📱';
    position: absolute;
    top: -10px;
    right: 30px;
    background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.mobile-app-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: #2196F3;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.mobile-app-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2196F3 0%, #03A9F4 100%);
    border-radius: 2px;
}

.mobile-app-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* Registration Info */
.registration-info {
    margin-bottom: 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.registration-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 50%, #4CAF50 100%);
    border-radius: 20px 20px 0 0;
}

.registration-info::after {
    content: '⚡';
    position: absolute;
    top: -10px;
    right: 30px;
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    animation: fastPulse 2s ease-in-out infinite;
}

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

.registration-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.registration-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 100%);
    border-radius: 2px;
}

.registration-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* Withdrawals Info */
.withdrawals-info {
    margin-bottom: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.withdrawals-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9C27B0 0%, #E91E63 50%, #9C27B0 100%);
    border-radius: 20px 20px 0 0;
}

.withdrawals-info::after {
    content: '💳';
    position: absolute;
    top: -10px;
    right: 30px;
    background: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.withdrawals-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: #9C27B0;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.withdrawals-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #9C27B0 0%, #E91E63 100%);
    border-radius: 2px;
}

.withdrawals-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* Hover Effects for Additional Info Cards */
.mobile-app-info:hover {
    border-color: #2196F3;
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.2);
    transform: translateY(-3px);
    transition: all 0.4s ease;
}

.registration-info:hover {
    border-color: #4CAF50;
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
    transform: translateY(-3px);
    transition: all 0.4s ease;
}

.withdrawals-info:hover {
    border-color: #9C27B0;
    box-shadow: 0 15px 40px rgba(156, 39, 176, 0.2);
    transform: translateY(-3px);
    transition: all 0.4s ease;
}

/* Subtle animations for the sections */
.mobile-app-info {
    animation: slideInLeft 0.8s ease-out;
}

.registration-info {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.withdrawals-info {
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

@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);
    }
}

/* Responsive Design for Additional Info */
@media (max-width: 768px) {
    .additional-info {
        padding: 60px 0;
    }
    
    .mobile-app-info, .registration-info, .withdrawals-info {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .mobile-app-info h2, .registration-info h2, .withdrawals-info h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .mobile-app-info p, .registration-info p, .withdrawals-info p {
        font-size: 15px;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .additional-info {
        padding: 40px 0;
    }
    
    .mobile-app-info, .registration-info, .withdrawals-info {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .mobile-app-info h2, .registration-info h2, .withdrawals-info h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .mobile-app-info p, .registration-info p, .withdrawals-info p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    /* Disable animations on mobile for better performance */
    .mobile-app-info, .registration-info, .withdrawals-info {
        animation: none;
    }
} 

/* Tournament & Support Section */
.tournament-support {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.tournament-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23FFD700" opacity="0.1"/><circle cx="5" cy="8" r="1" fill="%2300BCD4" opacity="0.1"/><circle cx="25" cy="22" r="1.5" fill="%23FF9800" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.7;
}

.tournament-support .content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

/* Tournaments Info */
.tournaments-info {
    margin-bottom: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.tournaments-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FF9800 50%, #FFD700 100%);
    border-radius: 20px 20px 0 0;
}

.tournaments-info::after {
    content: '🏆';
    position: absolute;
    top: -10px;
    right: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FF9800 100%);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: trophyFloat 3s ease-in-out infinite;
}

@keyframes trophyFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }
    50% { 
        transform: translateY(-5px) rotate(5deg); 
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    }
}

.tournaments-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.tournaments-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FF9800 100%);
    border-radius: 2px;
}

.tournaments-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* Support Info */
.support-info {
    margin-bottom: 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.support-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00BCD4 0%, #26C6DA 50%, #00BCD4 100%);
    border-radius: 20px 20px 0 0;
}

.support-info::after {
    content: '🎧';
    position: absolute;
    top: -10px;
    right: 30px;
    background: linear-gradient(135deg, #00BCD4 0%, #26C6DA 100%);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
    animation: supportPulse 2.5s ease-in-out infinite;
}

@keyframes supportPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
    }
    50% { 
        transform: scale(1.1); 
        box-shadow: 0 6px 20px rgba(0, 188, 212, 0.6);
    }
}

.support-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: #00BCD4;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.support-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00BCD4 0%, #26C6DA 100%);
    border-radius: 2px;
}

.support-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* Hover Effects for Tournament & Support Cards */
.tournaments-info:hover {
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    transition: all 0.4s ease;
}

.tournaments-info:hover::after {
    animation-duration: 1s;
}

.support-info:hover {
    border-color: #00BCD4;
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.3);
    transform: translateY(-3px);
    transition: all 0.4s ease;
}

.support-info:hover::after {
    animation-duration: 1.5s;
}

/* Section animations */
.tournaments-info {
    animation: fadeInUp 0.8s ease-out;
}

.support-info {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

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

/* Special glow effects */
.tournaments-info:hover h2 {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transition: text-shadow 0.3s ease;
}

.support-info:hover h2 {
    text-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
    transition: text-shadow 0.3s ease;
}

/* Responsive Design for Tournament & Support */
@media (max-width: 768px) {
    .tournament-support {
        padding: 60px 0;
    }
    
    .tournaments-info, .support-info {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .tournaments-info h2, .support-info h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .tournaments-info p, .support-info p {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .tournaments-info::after, .support-info::after {
        width: 25px;
        height: 25px;
        font-size: 12px;
        top: -8px;
        right: 25px;
    }
}

@media (max-width: 480px) {
    .tournament-support {
        padding: 40px 0;
    }
    
    .tournaments-info, .support-info {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .tournaments-info h2, .support-info h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .tournaments-info p, .support-info p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .tournaments-info::after, .support-info::after {
        width: 22px;
        height: 22px;
        font-size: 11px;
        top: -6px;
        right: 20px;
    }
    
    /* Disable complex animations on mobile for better performance */
    .tournaments-info, .support-info {
        animation: none;
    }
    
    .tournaments-info::after, .support-info::after {
        animation: none;
    }
}

/* Special effects for different sections interaction */
.tournament-support:hover .tournaments-info::before {
    background: linear-gradient(90deg, #FFD700 0%, #FF9800 25%, #FFD700 50%, #FF9800 75%, #FFD700 100%);
    background-size: 200% 100%;
    animation: goldShimmer 2s ease-in-out infinite;
}

.tournament-support:hover .support-info::before {
    background: linear-gradient(90deg, #00BCD4 0%, #26C6DA 25%, #00BCD4 50%, #26C6DA 75%, #00BCD4 100%);
    background-size: 200% 100%;
    animation: cyanShimmer 2s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes cyanShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.casino-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.casino-image-wrapper:hover {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #FFD700 50%, #16213e 70%, #0f0f0f 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.casino-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1.1) contrast(1.2);
}

.casino-image-wrapper:hover .casino-main-image {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.6);
    filter: brightness(1.3) contrast(1.4) saturate(1.2);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Добавляем золотые блики вокруг изображения */
.casino-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: goldSweep 4s ease-in-out infinite;
    z-index: 1;
}

.casino-image-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: rotate 8s linear infinite;
    z-index: 0;
}

.casino-main-image {
    position: relative;
    z-index: 2;
}

@keyframes goldSweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

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

@media (max-width: 768px) {
    .casino-image-wrapper {
        padding: 40px 20px;
    }
    
    .casino-main-image {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .casino-image-wrapper {
        padding: 30px 15px;
    }
    
    .casino-main-image {
        border-radius: 12px;
    }
}