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

html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #00110E;
    color: #ffffff;
    overflow-x: hidden;
}

/* Variables */
:root {
    --primary-bg: #00110E;
    --accent-red: #FF2301;
    --accent-red-hover: #E02911;
    --accent-green: #E02911;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
    --sidebar-width: 220px;
    --header-height: 80px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    max-width: 1920px;
    margin: 0 auto;
}

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

.main-nav {
    display: flex;
    gap: 30px;
    margin-left: var(--sidebar-width);
    position: absolute;
    left: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.nav-item img {
    width: 16px;
    height: 16px;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.nav-item:hover img {
    filter: brightness(1);
}

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

.header-text {
    color: var(--text-secondary);
    font-size: 14px;
    font-style: italic;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: relative;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
    position: absolute;
    transition: all 0.3s ease;
}

.mobile-menu-btn .burger-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.mobile-menu-btn .close-icon {
    opacity: 0;
    transform: rotate(180deg);
}

.mobile-menu-btn.active .burger-icon {
    opacity: 0;
    transform: rotate(-180deg);
}

.mobile-menu-btn.active .close-icon {
    opacity: 1;
    transform: rotate(0deg);
}

/* Button Styles */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 35, 1, 0.4);
}

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

.btn-secondary:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    transform: translateY(-1px);
}

.btn-secondary-red {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-red);
}

.btn-secondary-red:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 35, 1, 0.4);
}

/* Main Layout */
.main-layout {
    display: flex;
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* Sidebar Styles */
.sidebar {
    width: var(--sidebar-width);
    background: var(--primary-bg);
    border-right: 1px solid var(--border-color);
    position: fixed;
    left: 0;
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 20px 10px;
    flex: 1;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.sidebar-item:hover,
.sidebar-item.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    transform: translateX(5px);
}

.sidebar-item.active {
    background: linear-gradient(90deg, rgba(255, 35, 1, 0.1) 0%, transparent 100%);
    border-left: 3px solid var(--accent-red);
}

.sidebar-item img {
    width: 20px;
    height: 20px;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.sidebar-item:hover img,
.sidebar-item.active img {
    filter: brightness(1);
}

.sidebar-bottom {
    margin-top: auto;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    color: var(--text-secondary);
    font-size: 14px;
}

.language-selector {
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 14px;
    min-width: 120px;
    justify-content: flex-start;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 35, 1, 0.1);
}

.flag {
    width: 28px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Mobile Auth Buttons */
.mobile-auth-buttons {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    padding: 0 15px;
}

.mobile-btn-primary, .mobile-btn-secondary {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.mobile-btn-primary {
    background: var(--accent-red);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 35, 1, 0.3);
}

.mobile-btn-primary:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 35, 1, 0.4);
}

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

.mobile-btn-secondary:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    transform: translateY(-1px);
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    padding: 30px;
    min-height: calc(100vh - var(--header-height));
}

/* Promotional Banners */
.promo-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    padding: 10px;
}

.banner {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: visible;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.banner:hover {
    transform: translateY(-5px);
}

.sport-banner:hover {
    box-shadow: 
        0 0 8px rgba(255, 35, 1, 0.6),
        0 0 16px rgba(255, 35, 1, 0.4),
        0 4px 15px rgba(255, 35, 1, 0.2);
    border: 1px solid #FF2301;
}

.casino-banner:hover {
    box-shadow: 
        0 0 8px rgba(0, 255, 135, 0.6),
        0 0 16px rgba(0, 255, 135, 0.4),
        0 4px 15px rgba(0, 255, 135, 0.2);
    border: 1px solid #00FF87;
}

.sport-banner {
    background: 
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #FF2301 100%),
        url('images/bonus-sport-underlay-desk.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.sport-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/bonus-sport-underlay-desk.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.casino-banner {
    background: 
        linear-gradient(90deg, #00C851 0%, #007E33 50%, #000000 100%),
        url('images/bonus-casino-underlay-desk.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.casino-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/bonus-casino-underlay-desk.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.banner-content {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.9;
}

.banner-text {
    font-size: 18px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.banner-percentage {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #FFD700;
}

.banner-bonus {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-image {
    position: absolute;
    right: -30px;
    bottom: 0;
    height: 110%;
    z-index: 1;
    transition: transform 0.3s ease;
    transform-origin: bottom right;
}

.banner-image img {
    height: 100%;
    width: auto;
    object-fit: cover;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
}

.banner:hover .banner-image {
    transform: scale(1.02) translateX(-3px);
}

/* Sports Section */
.sports-section {
    margin-bottom: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FF2301, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.sports-matches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.match-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.match-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 35, 1, 0.1);
}

.match-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 14px;
}

.match-info img {
    width: 16px;
    height: 16px;
}

.match-time {
    margin-left: auto;
    color: var(--accent-red);
    font-weight: 500;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.team {
    flex: 1;
    text-align: center;
}

.team-name {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.odds {
    background: var(--accent-red);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.odds:hover {
    background: var(--accent-red-hover);
    transform: scale(1.05);
}

.vs {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Casino Games Section */
.casino-games-section {
    margin-bottom: 50px;
}

.casino-header {
    text-align: center;
    margin-bottom: 30px;
}

.casino-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FF2301, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.casino-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
}

.all-slots-button {
    text-align: center;
    margin: 30px 0 0 0;
}

.casino-games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.game-card {
    position: relative;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    background: #1a1a1a;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 35, 1, 0.15);
    border-color: var(--accent-red);
}

.game-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.game-card:hover .game-overlay {
    transform: translateY(0);
}

.game-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.game-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.game-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.demo-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.demo-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.play-btn {
    background: linear-gradient(135deg, #ff2301, #ff4601);
    color: white;
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 35, 1, 0.3);
}

.play-btn:hover {
    background: linear-gradient(135deg, #ff4601, #ff6601);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 35, 1, 0.4);
}



/* Footer */
.footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
    padding: 40px 0;
}

.footer-container {
    margin-left: var(--sidebar-width);
    max-width: calc(1920px - var(--sidebar-width));
    padding: 0 30px;
}

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

.footer-section h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
}

.footer-section a:hover {
    color: var(--accent-red);
    transform: translateX(5px);
}

.support-link {
    background: rgba(255, 35, 1, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.support-link:hover {
    background: rgba(255, 35, 1, 0.2);
}

/* Footer QR Code */
.footer-qr {
    text-align: center;
}

.footer-qr h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qr-code:hover {
    border-color: var(--accent-red);
    background: rgba(255, 35, 1, 0.05);
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    width: 70px;
    height: 70px;
}

.qr-grid span {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.qr-grid span.filled {
    background: var(--text-primary);
}

.qr-placeholder p {
    color: var(--text-secondary);
    font-size: 12px;
    margin: 0;
    font-weight: 500;
}









/* Providers Grid */
.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.providers-grid img {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
}

.providers-grid img:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 35, 1, 0.1);
}

/* Payment Grid */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.payment-grid img {
    height: 70px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 5px;
}

.payment-grid img:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.2) drop-shadow(0 6px 15px rgba(255, 35, 1, 0.2));
}

/* Apps Final Section */
.apps-final-section {
    text-align: center;
    margin-bottom: 30px;
}

.apps-final-section h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.final-app-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.final-app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.final-app-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 35, 1, 0.2);
}

.final-app-btn img {
    width: 24px;
    height: 24px;
}

/* Copyright Section */
.copyright-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 30px 20px;
    border-top: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.age-badge {
    display: flex;
    justify-content: center;
}

.age-badge span {
    background: var(--accent-red);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 35, 1, 0.3);
    transition: all 0.3s ease;
}

.age-badge span:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 35, 1, 0.4);
}

.copyright-text {
    text-align: center;
    max-width: 800px;
}

.copyright-text p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.copyright-text p:first-child {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.license-info {
    font-size: 12px !important;
    opacity: 0.7;
    margin-bottom: 0 !important;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 50px;
    margin-top: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-red);
    box-shadow: 
        0 0 20px rgba(255, 35, 1, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.benefit-card:hover::before {
    left: 100%;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 35, 1, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    border: 2px solid rgba(255, 35, 1, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    border-color: var(--accent-red);
    background: radial-gradient(circle, rgba(255, 35, 1, 0.2) 0%, transparent 70%);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 35, 1, 0.3);
}

.benefit-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(1.2) saturate(1.1);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon img {
    transform: scale(1.1);
    filter: brightness(1.4) saturate(1.3);
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
    color: #FFD700;
}

.benefit-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Gaming Info Section */
.gaming-info {
    margin-bottom: 20px;
    margin-top: 50px;
}

.gaming-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 20px auto 0;
    text-align: center;
    font-weight: 400;
}

.gaming-info-button {
    text-align: center;
    margin-top: 30px;
}

/* Touch Devices - Remove Hover Effects */
@media (hover: none) and (pointer: coarse) {
    .game-card:hover {
        transform: none !important;
        box-shadow: none !important;
        border-color: var(--border-color) !important;
    }
    
    .game-image img {
        transform: none !important;
    }
    
    .game-card:hover .game-image img {
        transform: none !important;
    }
    
    .game-overlay {
        transform: translateY(0) !important;
        background: linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%
        ) !important;
    }
    
    .game-card:hover .game-overlay {
        transform: translateY(0) !important;
    }
    
    .game-btn:hover {
        transform: none !important;
    }
    
    .demo-btn:hover {
        transform: none !important;
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    .play-btn:hover {
        transform: none !important;
        background: linear-gradient(135deg, #ff2301, #ff4601) !important;
        box-shadow: 0 4px 15px rgba(255, 35, 1, 0.3) !important;
    }
    
    .benefit-card:hover {
        transform: none !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-color: var(--border-color) !important;
        box-shadow: none !important;
    }
    
    .benefit-card:hover::before {
        left: -100% !important;
    }
    
    .benefit-card:hover .benefit-icon {
        transform: none !important;
        border-color: rgba(255, 35, 1, 0.2) !important;
        background: radial-gradient(circle, rgba(255, 35, 1, 0.1) 0%, transparent 70%) !important;
        box-shadow: none !important;
    }
    
    .benefit-card:hover .benefit-icon img {
        transform: none !important;
        filter: brightness(1.2) saturate(1.1) !important;
    }
    
    .benefit-card:hover .benefit-title {
        color: var(--text-primary) !important;
    }
    
    .benefit-card:hover .benefit-description {
        color: var(--text-secondary) !important;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .header-text {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        order: 1;
    }
    
    .header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .logo {
        order: 0;
        text-align: left;
    }
    
    .header-actions {
        display: flex !important;
        order: 0.5;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .header-actions .btn-primary {
        display: none;
    }
    
    .header-actions .btn-secondary {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    :root {
        --sidebar-width: 0px;
    }
    
    body {
        overflow-x: hidden;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: 280px;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        z-index: 1000;
    }
    
    .sidebar.open {
        transform: translateX(0);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    /* Mobile Overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(2px);
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-auth-buttons {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
        padding: 20px 15px;
        overflow-x: hidden;
    }
    
    .promo-banners {
        grid-template-columns: 1fr;
        gap: 15px;
        overflow-x: hidden;
    }
    
    .banner {
        height: 260px;
        overflow: hidden;
        max-width: 100%;
    }
    
    .banner-image {
        right: -10px;
        bottom: 0;
        height: 100%;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .banner-percentage {
        font-size: 48px;
    }
    
    .banner-bonus {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .sports-matches {
        grid-template-columns: 1fr;
    }
    
    .casino-title {
        font-size: 28px;
    }

    .all-slots-button {
        margin: 25px 0 0 0;
    }
    
    .casino-games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px 15px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .benefit-icon img {
        width: 45px;
        height: 45px;
    }
    
    .benefit-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .benefit-description {
        font-size: 13px;
    }
    
    .gaming-info {
        margin: 40px 0 15px 0;
    }
    
    .gaming-info p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .game-card {
        height: 140px;
    }
    
    .game-card:hover {
        transform: none;
        box-shadow: none;
        border-color: var(--border-color);
    }
    
    .game-image img {
        transform: none !important;
    }
    
    .game-card:hover .game-image img {
        transform: none !important;
    }
    
    .game-overlay {
        transform: translateY(0) !important;
        background: linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%
        );
        position: absolute;
        bottom: 0;
        height: auto;
        padding: 15px 10px 10px;
    }
    
    .game-card:hover .game-overlay {
        transform: translateY(0) !important;
    }
    
    .game-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .game-btn {
        padding: 6px 8px;
        font-size: 10px;
    }
    
    .game-btn:hover {
        transform: none !important;
    }
    
    .footer-container {
        margin-left: 0;
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    

    
    .final-app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-red) rgba(255, 255, 255, 0.1);
    }
    
    .payment-grid::-webkit-scrollbar {
        height: 4px;
    }
    
    .payment-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    .payment-grid::-webkit-scrollbar-thumb {
        background: var(--accent-red);
        border-radius: 4px;
    }
    
    .payment-grid img {
        min-width: 60px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .header-actions {
        display: none !important;
    }
    
    .logo {
        flex: 1;
    }
    
    .mobile-menu-btn {
        padding: 8px;
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .promo-banners {
        padding: 0 10px;
        gap: 20px;
    }
    
    .banner {
        height: 200px;
        overflow: hidden;
        position: relative;
        width: 100%;
        max-width: 100%;
    }
    
    .banner-content {
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        position: absolute;
        z-index: 3;
        width: 55%;
    }
    
    .banner-title {
        font-size: 28px !important;
        margin-bottom: 5px !important;
    }
    
    .banner-subtitle {
        font-size: 16px !important;
        margin-bottom: 5px !important;
    }
    
    .banner-text {
        font-size: 14px !important;
        margin-bottom: 3px !important;
    }
    
    .banner-percentage {
        font-size: 36px !important;
        margin-bottom: 15px !important;
    }
    
    .banner-bonus {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .banner-image {
        right: 0;
        bottom: 0;
        height: 100%;
        width: 40%;
        position: absolute;
        z-index: 1;
    }
    
    .banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
    
    .banner:hover .banner-image {
        transform: none;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .banner-percentage {
        font-size: 36px;
    }
    
    .banner-bonus {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .casino-title {
        font-size: 24px;
    }

    .all-slots-button {
        margin: 20px 0 0 0;
    }
    
    .casino-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .benefit-icon img {
        width: 40px;
        height: 40px;
    }
    
    .benefit-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .benefit-description {
        font-size: 12px;
    }
    
    .gaming-info {
        margin: 30px 0 10px 0;
    }
    
    .gaming-info p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .game-card {
        height: 120px;
    }
    
    .game-card:hover {
        transform: none;
        box-shadow: none;
        border-color: var(--border-color);
    }
    
    .game-image img {
        transform: none !important;
    }
    
    .game-card:hover .game-image img {
        transform: none !important;
    }
    
    .game-overlay {
        transform: translateY(0) !important;
        background: linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%
        );
        position: absolute;
        bottom: 0;
        height: auto;
        padding: 12px 8px 8px;
    }
    
    .game-card:hover .game-overlay {
        transform: translateY(0) !important;
    }
    
    .game-title {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .game-buttons {
        gap: 5px;
    }
    
    .game-btn {
        padding: 5px 6px;
        font-size: 9px;
    }
    
    .game-btn:hover {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(255, 35, 1, 0.3);
    }
    
    .demo-btn:hover {
        transform: none !important;
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .match-teams {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .qr-code {
        width: 100px;
        height: 100px;
    }
    
    .qr-grid {
        width: 60px;
        height: 60px;
        gap: 2px;
    }
    

    

    

    
    .providers-grid,
    .payment-grid {
        padding: 20px;
        gap: 15px;
    }
    
    .providers-grid img {
        height: 40px;
        padding: 6px 10px;
    }
    
    .payment-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-red) rgba(255, 255, 255, 0.1);
    }
    
    .payment-grid::-webkit-scrollbar {
        height: 4px;
    }
    
    .payment-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    .payment-grid::-webkit-scrollbar-thumb {
        background: var(--accent-red);
        border-radius: 4px;
    }
    
    .payment-grid img {
        height: 55px;
        padding: 3px;
        min-width: 55px;
        flex-shrink: 0;
    }
    
    .final-app-buttons {
        flex-direction: column;
        gap: 10px;
    }
} 