* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #4c1d95 0%, #5b21b6 25%, #7c3aed 50%, #8b5cf6 75%, #a78bfa 100%);
    --secondary-gradient: linear-gradient(45deg, #1e40af 0%, #2563eb 100%);
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --accent-orange: #ff6b35;
    --accent-green: #48bb78;
    --accent-yellow: #ecc94b;
    --card-bg: rgba(255, 255, 255, 0.08);
    --card-border: rgba(255, 255, 255, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary-gradient);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

.main-content {
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 2;
    background: var(--primary-gradient);
}

.sidebar {
    width: 280px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-right: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.logo {
    text-align: center;
    margin-bottom: 25px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: default;
}

.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.nav-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
}

.nav-btn.active {
    background: var(--accent-orange);
    color: white;
}

.nav-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: var(--accent-orange);
    color: white;
}

.promo-section {
    background: var(--card-bg);
    border: 2px dashed var(--accent-orange);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.promo-header {
    margin-bottom: 12px;
}

.promo-label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 4px;
}

.promo-text {
    font-size: 16px;
    color: var(--text-secondary);
}

.promo-code {
    background: var(--accent-orange);
    color: white;
    border-radius: 25px;
    padding: 14px 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 18px;
    margin-top: 12px;
    border: none;
}

.promo-code:hover {
    background: #ff8c42;
    transform: scale(1.02);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.sidebar-nav {
    flex: 1;
    margin-bottom: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sidebar-nav::-webkit-scrollbar {
    display: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.nav-link:hover {
    background: var(--card-bg);
    transform: translateX(4px);
    animation: pulse 1s infinite;
}

.nav-icon {
    font-size: 25px;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.content {
    flex: 1;
    padding: 0;
    overflow-x: hidden;
}

.mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
}

.mobile-menu-btn {
    font-size: 25px;
    cursor: pointer;
    padding: 8px;
    position: relative;
}

.hamburger-icon, .close-icon {
    transition: opacity 0.3s ease;
}

.mobile-logo {
    height: 120px;
    width: auto;
}

.mobile-auth {
    display: flex;
    gap: 8px;
}

.mobile-btn {
    display: inline-block;
    padding: 10px 14px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.mobile-btn.registration {
    background: var(--accent-orange);
    color: white;
}

.mobile-btn.login {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.mobile-btn:hover {
    animation: pulse 1s infinite;
    transform: scale(1.05);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    height: 140px;
    position: relative;
    z-index: 1001;
}

.header-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-left .header-logo-img {
    height: 128px;
    width: auto;
    cursor: default;
}

.header-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-btn.download {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

.header-btn.bonus {
    background: var(--accent-yellow);
    color: #000;
}

.header-btn.registration {
    background: var(--accent-orange);
    color: white;
    text-transform: uppercase;
}

.header-btn.login {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
    text-transform: uppercase;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: pulse 1s infinite;
}

.hero-section {
    position: relative;
    padding: 30px;
}

.hero-slider {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 40px;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    gap: 30px;
}

.slide-text h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.slide-text p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.download-btn {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 18px 34px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    animation: pulse 1s infinite;
}

.slide-image {
    flex-shrink: 0;
}

.phone-mockup, .bonus-mockup, .aviator-mockup {
    font-size: 160px;
    opacity: 0.8;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-orange);
}

.dot:hover {
    transform: scale(1.2);
}

.current-winners {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 320px;
    max-width: calc(100% - 60px);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 16px;
    z-index: 10;
    max-height: 400px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.current-winners::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

.current-winners h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--accent-yellow);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(236, 201, 75, 0.3); }
    to { text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(236, 201, 75, 0.6); }
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.15), rgba(56, 178, 172, 0.1));
    border-radius: 8px;
    font-size: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.winner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.winner-item:hover::before {
    left: 100%;
}

.winner-item:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.25), rgba(56, 178, 172, 0.15));
    border-color: rgba(72, 187, 120, 0.5);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.2);
}

.winner-item:hover .play-btn {
    opacity: 1;
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.winner-item.new-winner {
    animation: slideInUpBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.25), rgba(56, 178, 172, 0.15));
    border-color: rgba(72, 187, 120, 0.4);
    box-shadow: 0 0 20px rgba(72, 187, 120, 0.3);
}

@keyframes slideInUpBounce {
    0% {
        transform: translateY(100%) scale(0.8);
        opacity: 0;
    }
    60% {
        transform: translateY(-10%) scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.winner-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.winner-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.winner-item:hover .winner-avatar::before {
    opacity: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.winner-info {
    flex: 1;
    min-width: 0;
}

.winner-game {
    display: block;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.winner-amount {
    display: block;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.winner-item:hover .winner-amount::after {
    right: -2px;
    opacity: 1;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.play-btn {
    position: absolute;
    left: 35%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0.8);
    background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff8c42, var(--accent-orange));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.play-btn:hover::before {
    opacity: 1;
}

.play-btn:hover {
    transform: translateY(-50%) translateX(-50%) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    animation: pulse 1.5s infinite;
}

.play-btn:active {
    transform: translateY(-50%) translateX(-50%) scale(0.95);
}

.winner-item.removing {
    animation: slideOutUp 0.5s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes slideOutUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-5px) scale(0.98);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-30px) scale(0.8);
        opacity: 0;
    }
}

.top-nav {
    display: flex;
    gap: 8px;
    margin: 30px;
    flex-wrap: wrap;
}

.top-nav-link {
    padding: 14px 18px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.top-nav-link:hover {
    background: var(--secondary-gradient);
    transform: translateY(-2px);
    animation: pulse 1s infinite;
}

.top-nav-link.aviator {
    background: var(--accent-orange);
    color: white;
}

.games-section {
    margin: 0 30px 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    color: var(--text-primary);
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    text-decoration: none;
    animation: pulse 1s infinite;
}

.game-card.large {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
}

.game-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.game-badge.hot {
    background: #ff4757;
    color: white;
}

.game-badge.new {
    background: var(--accent-green);
    color: white;
}

.game-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.game-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.load-more-btn {
    display: block;
    margin: 0 auto;
    padding: 16px 34px;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
    animation: pulse 1s infinite;
}

.content-sections {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 30px;
}

.info-table {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
}

.info-table h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--card-border);
    font-size: 16px;
}

.info-table td:first-child {
    font-weight: 600;
    color: var(--text-secondary);
    width: 200px;
}

.info-table td:last-child {
    color: var(--text-primary);
}

.table-icon {
    margin-right: 10px;
    font-size: 22px;
    vertical-align: middle;
}

.description {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
    font-size: 18px;
    line-height: 1.7;
}

.description strong {
    color: var(--accent-orange);
}

.promo-box-inline {
    background: var(--card-bg);
    border: 2px dashed var(--accent-orange);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-top: 24px;
    position: relative;
    background-image: 
        radial-gradient(circle at 0 50%, transparent 8px, var(--card-bg) 8px),
        radial-gradient(circle at 100% 50%, transparent 8px, var(--card-bg) 8px);
    background-size: 16px 100%;
    background-position: left center, right center;
    background-repeat: repeat-y;
}

.promo-box-inline::before,
.promo-box-inline::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary-gradient);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.promo-box-inline::before {
    left: -8px;
}

.promo-box-inline::after {
    right: -8px;
}

.promo-box-inline h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-orange);
}

.promo-code-inline {
    background: var(--accent-orange);
    color: white;
    border-radius: 25px;
    padding: 14px 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 18px;
    margin-top: 12px;
    display: inline-block;
    border: none;
}

.promo-code-inline:hover {
    background: #ff8c42;
    transform: scale(1.02);
    animation: pulse 1s infinite;
}

.text-sections {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.text-sections section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
}

.text-sections h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.text-sections p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.text-sections strong {
    color: var(--accent-orange);
}

.text-sections a {
    color: var(--accent-orange);
    text-decoration: none;
}

.text-sections a:hover {
    text-decoration: underline;
}

.text-sections ol,
.text-sections ul {
    padding-left: 15px;
}

.text-sections ol {
    list-style: none;
    counter-reset: item;
}

.text-sections ol li {
    counter-increment: item;
    position: relative;
}

.text-sections ol li::before {
    content: counter(item) ".";
    color: var(--accent-orange) !important;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.text-sections ul li::before {
    content: "•";
    color: var(--accent-orange) !important;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.text-sections ul {
    list-style: none;
}

.text-sections ul li {
    position: relative;
}

.testimonial-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px 24px 100px 24px;
    position: relative;
    margin-bottom: 60px;
}

.testimonial-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.testimonial-slider {
    position: relative;
    min-height: 180px;
    overflow: visible;
}

.testimonial {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 16px 0;
    top: 0;
    left: 0;
}

.testimonial.active {
    opacity: 1;
}

.testimonial-layout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.testimonial-avatar .material-icons {
    font-size: 37px;
    color: white;
}

.testimonial-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.testimonial-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 12px;
    padding-left: 76px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-date {
    opacity: 0.8;
}

.testimonial-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.testimonial-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    animation: pulse 1s infinite;
}

.faq-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 24px;
}

.faq-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 16px;
    padding-bottom: 16px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    padding: 18px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--accent-orange);
}

.faq-text {
    flex: 1;
}

.faq-arrow {
    transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 18px 0 0 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.footer {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin: 40px 30px 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 120px;
    width: auto;
}

.age-restriction {
    background: var(--accent-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 120px;
    height: 90px;
    opacity: 0.8;
    transition: all 0.3s ease;
    border-radius: 4px;
    object-fit: contain;
}

.payment-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--accent-green);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10000;
}

.notification.show {
    transform: translateX(0);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

.mobile-close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.casino-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0 10px;
    box-sizing: border-box;
}

.casino-game-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.casino-game-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.casino-game-card:hover::after {
    opacity: 1;
}

.casino-game-card:hover {
    transform: translateY(-5px);
}

.casino-game-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.casino-game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    z-index: 1;
}

.casino-game-badge.hot {
    background-color: #ff3d00;
}

.casino-game-badge.new {
    background-color: #00a651;
}

.casino-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
    z-index: 1;
}

.casino-game-card:hover .casino-game-overlay {
    opacity: 1;
}

.casino-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
    color: white;
    width: auto;
    min-width: 100px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.casino-play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff8c42, var(--accent-orange));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.casino-play-btn:hover::before {
    opacity: 1;
}

.casino-game-card:hover .casino-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.casino-play-btn i {
    margin-right: 8px;
    font-size: 14px;
}

.casino-game-title {
    font-size: 14px;
    font-weight: bold;
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8), transparent);
    text-align: center;
}

@media (max-width: 1200px) {
    .slide-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .slide-text h1 {
        font-size: 28px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .game-card.large {
        grid-column: span 1;
    }
    
    .current-winners {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
        max-height: none;
    }

    .phone-mockup, .bonus-mockup, .aviator-mockup {
        font-size: 100px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .main-content {
        overflow-x: hidden;
    }
    
    .container {
        overflow-x: hidden;
    }
    
    .sidebar {
        transform: translateX(-100%);
        width: 100%;
        top: 0;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        position: fixed;
    }
    
    .sidebar.mobile-open {
        transform: translateX(0);
    }
    
    .mobile-close-btn {
        display: block !important;
    }
    
    .content {
        margin-left: 0;
        max-width: 100vw;
        overflow-x: hidden;
        flex: 1;
        padding: 0;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .header {
        display: none;
    }
    
    .hero-section {
        padding: 16px;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .slide {
        padding: 20px;
    }

    .slide-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 15px;
    }
    
    .slide-text {
        flex: 1;
        min-width: 0;
    }
    
    .slide-image {
        flex-shrink: 0;
        order: 2;
    }
    
    .slide-text h1 {
        font-size: 24px;
    }
    
    .slide-text p {
        font-size: 14px;
    }
    
    .download-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .phone-mockup, .bonus-mockup, .aviator-mockup {
        font-size: 60px;
    }

    .slider-dots {
        bottom: 15px;
        z-index: 10;
    }
    
    .current-winners {
        display: none;
    }
    
    .top-nav {
        display: none;
    }
    
    .games-section {
        margin: 0 16px 40px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .game-card {
        padding: 16px;
        min-height: 100px;
    }
    
    .game-title {
        font-size: 14px;
    }
    
    .game-subtitle {
        font-size: 12px;
    }
    
    .content-sections {
        padding: 0 16px;
    }
    
    .info-table {
        padding: 20px;
    }
    
    .info-table h2 {
        font-size: 20px;
    }
    
    .info-table td {
        padding: 10px 0;
        display: block;
        border-bottom: none;
    }
    
    .info-table td:first-child {
        width: auto;
        font-weight: 700;
        color: var(--accent-orange);
        margin-bottom: 4px;
    }
    
	
    .info-table tr {
        display: block;
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--card-border);
    }
    
    .description, .text-sections section, .faq-section {
        padding: 20px;
    }
    
    .testimonial-section {
        padding: 20px 20px 80px 20px;
        margin-bottom: 40px;
    }
    
    .testimonial-nav {
        bottom: 10px;
    }

    .testimonial-slider {
        min-height: 280px;
    }

    .testimonial-layout {
        gap: 12px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .testimonial-info {
        padding-left: 62px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .testimonial-text {
        font-size: 14px;
        -webkit-line-clamp: unset !important;
        display: block !important;
        overflow: visible !important;
        text-overflow: unset !important;
        -webkit-box-orient: unset !important;
    }
    
    .footer {
        padding: 24px 20px;
        margin: 40px 16px 16px;
    }
    
    .payment-methods {
        gap: 12px;
    }
    
    .payment-icon {
        width: 86px;
        height: 50px;
    }
    
    .mobile-auth {
        flex-direction: column;
        gap: 4px;
    }
    
    .mobile-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .mobile-overlay {
        display: none;
    }
    
    .casino-games-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
        padding: 0 5px;
    }
    
    .casino-game-card img {
        height: 100px;
    }
    
    .casino-game-title {
        font-size: 12px;
        padding: 8px 5px;
    }

    .mobile-logo {
        height: 108px;
        width: auto;
    }
    
    .footer-logo-img {
        height: 108px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 12px;
    }
    
    .hero-slider {
        height: 250px;
    }
    
    .slide {
        padding: 16px;
    }
    
    .slide-text h1 {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .slide-text p {
        font-size: 12px;
    }
    
    .download-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .phone-mockup, .bonus-mockup, .aviator-mockup {
        font-size: 50px;
    }
    
    .games-section {
        margin: 0 12px 30px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .content-sections {
        padding: 0 12px;
    }
    
    .info-table, .description, .text-sections section, .testimonial-section, .faq-section {
        padding: 16px;
    }
    
    .footer {
        margin: 30px 12px 12px;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .casino-games-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 8px;
    }
    
    .casino-play-btn {
        min-width: 80px;
        height: 32px;
        font-size: 12px;
    }
    
    .casino-game-card img {
        height: 85px;
    }

    .payment-icon {
        width: 76px;
        height: 42px;
    }

    .mobile-logo {
        height: 96px;
        width: auto;
    }
    
    .footer-logo-img {
        height: 96px;
        width: auto;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
        margin: 0 auto;
    }
    
    .sidebar {
        width: 320px;
    }
    
    .content {
        margin-left: 320px;
        max-width: calc(1800px - 320px);
    }
    
    .slide-text h1 {
        font-size: 40px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .header-left .header-logo-img {
        height: 56px;
        width: auto;
    }
    
    .footer-logo-img {
        height: 144px;
        width: auto;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.game-card, .info-table, .description, .text-sections section, .testimonial-section, .faq-section {
    animation: fadeIn 0.6s ease;
}

html {
    scroll-behavior: smooth;
}