/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1F1E25;
    color: #FFFFFF;
    font-family: 'Styrene A Web', Arial, sans-serif;
    overflow-x: hidden;
}

span, div {
    user-select: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

/* Header Styles */
.main-header {
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background: #1f1e25;
    z-index: 10;
    top: 0;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
}

.logo-icon {
    width: 150px;
    height: 70px;
}

.header-middle {
    display: flex;
    font-size: 28px;
    align-items: center;
    text-shadow: 8.08791px 8.08791px 0px rgba(111, 111, 111, 0.25);
    justify-content: center;
}

.download-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 8px;
    min-width: 250px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #FFFFFF;
    font-family: 'Styrene A Web';
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.5px;
    text-transform: none;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.download-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.download-button:hover:before {
    left: 100%;
}

.login-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 5px;
}

.header-button, .chat-button, .profile-button {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 50px;
    height: 47px;
    background: #2C2C3A;
    border: 1px solid #363646;
    border-radius: 8px;
    color: #FFF;
    display: flex;
    padding: 0;
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1F1E25;
    animation: notificationPulse 2s infinite;
}

@keyframes notificationPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.level-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 18.7px;
    height: 18.7px;
    border-radius: 50%;
    background: #1F1E25;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Content */
.main-content {
    margin-top: 120px;
    width: 100%;
    min-height: 100vh;
}

/* Navigation Tabs */
.navigation-tabs {
    width: 100%;
    padding: 0 50px;
    margin-bottom: 20px;
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(31, 30, 37, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(254, 216, 71, 0.1);
}

.nav-tabs-container {
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px;
    border-radius: 50px;
    border: 2px solid rgba(254, 216, 71, 0.3);
    backdrop-filter: blur(15px);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 40px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Styrene A Web';
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(254, 216, 71, 0.2), transparent);
    transition: left 0.8s ease;
}

.nav-tab:hover::before {
    left: 100%;
}

.nav-tab:hover {
    color: #FFFFFF;
    background: rgba(254, 216, 71, 0.1);
    border-color: rgba(254, 216, 71, 0.4);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(254, 216, 71, 0.2);
}

.nav-tab.active {
    background: linear-gradient(135deg, #897b41 0%, #805c0080 100%);
    color: #1a1a2e;
    border-color: #b0a373;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(254, 216, 71, 0.4);
    font-weight: 800;
}

.nav-tab.active:hover {
    background: linear-gradient(135deg, #634700 0%, #6c5d20 100%);
    color: #1a1a2e;
    border-color: #927221;
    box-shadow: 0 15px 40px rgba(254, 216, 71, 0.5);
}

.nav-tab svg {
    width: 20px;
    height: 20px;
    transition: all 0.4s ease;
}

.nav-tab:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.nav-tab.active svg {
    transform: scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(26, 26, 46, 0.3));
}

/* Mobile responsive styles for navigation tabs */
@media (max-width: 768px) {
    .navigation-tabs {
        padding: 0 20px;
        margin-bottom: 15px;
        top: 90px;
    }
    
    .nav-tabs-container {
        max-width: none;
        gap: 6px;
        padding: 4px;
        border-radius: 40px;
    }
    
    .nav-tab {
        padding: 8px 16px;
        font-size: 10px;
        gap: 4px;
        flex-direction: column;
        min-width: auto;
        border-radius: 25px;
        letter-spacing: 0.3px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .nav-tab svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-tab:hover {
        transform: translateY(-2px) scale(1.01);
    }
    
    .nav-tab.active {
        transform: translateY(-2px) scale(1.01);
    }
    
    .carousel-box {
        padding-top: 80px;
    }
}

.carousel-box {
    width: 100%;
    padding-right: 50px;
    margin-left: 20px;
    padding-top: 80px;
    padding-bottom: 20px;
}

/* Banner Styles */
.banner-box {
    background-position: 26% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    color: #FFF;
    border-radius: 30px;
    height: 450px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-image-container {
    position: absolute;
    left: 20px;
    bottom: -24px;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.banner-slider {
    display: flex;
    width: 400%;
    height: 100%;
    animation: slideInfiniteOneDirection 60s linear infinite;
}

@keyframes slideInfiniteOneDirection {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.banner-character {
    width: 25%;
    height: 500px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
}

.banner-text-box {
    display: flex;
    flex-direction: column;
    width: 515px;
    position: absolute;
    left: 97px;
    top: 40px;
}

.banner-title {
    font-family: 'Styrene A Web';
    font-weight: 900;
    font-size: 49.391px;
    line-height: 63px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: -6.73513px 6.73513px 0px rgba(0, 0, 0, 0.25);
}

.banner-title span {
    color: #FED847;
}

.banner-desc {
    font-family: 'Styrene A Web';
    font-weight: 900;
    font-size: 25px;
    line-height: 94px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: -9.99288px 9.99288px 0px rgba(0, 0, 0, 0.25);
}

.banner-text {
    font-family: 'Styrene A Web';
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
}

/* Game List Styles */
.game-list-box {
    margin-top: 34px;
    width: 100%;
    text-align: center;
}

.game-list-box > span {
    font-family: 'Styrene A Web';
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 41px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: -8.08791px 8.08791px 0px rgba(111, 111, 111, 0.25);
}

.game-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-left: 20px;
    margin-top: 22px;
    width: 100%;
    overflow: auto;
    flex-wrap: wrap;
}

.game-button {
    width: 241px;
    height: 280px;
    padding: 0;
    border-radius: 20px;
    flex: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.game-button:hover {
    transform: scale(1.05);
}

.game-button:hover img {
    opacity: 0.7;
}

.game-button:hover .game-hover-overlay {
    opacity: 1;
    visibility: visible;
}

.game-button img {
    width: 100%;
    height: 242px;
    border-radius: 20px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.game-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 38px;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.game-download-btn {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #00d4ff;
    border: 2px solid transparent;
    background-clip: padding-box;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Styrene A Web';
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.game-download-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #fb5607);
    border-radius: 50px;
    opacity: 0.3;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.game-download-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

.sparkle-icon {
    font-size: 16px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% { 
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

.game-info {
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.stars {
    color: #FED847;
    font-size: 14px;
    letter-spacing: 1px;
}

.rating-number {
    color: #FFF;
    font-weight: 600;
}

.game-players {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #CCCCCC;
}

.game-players svg {
    width: 12px;
    height: 12px;
    color: #FED847;
}

/* Bonus Cards */
.bonus-list {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 25px;
    margin-top: 55px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.bonus-card {
    background: #2C2C3A;
    border: 1px solid #363646;
    border-radius: 20px;
    padding: 30px;
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bonus-card:hover::before {
    opacity: 1;
}

.bonus-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(90, 69, 209, 0.3);
}

.bonus-card.colored {
    background: linear-gradient(135deg, #5A45D1 0%, #BA6AFF 100%);
    border: 1px solid rgba(186, 106, 255, 0.3);
    box-shadow: 0 4px 20px rgba(90, 69, 209, 0.2);
}

.bonus-card.colored:hover {
    box-shadow: 0 20px 50px rgba(90, 69, 209, 0.4);
    border-color: rgba(186, 106, 255, 0.5);
}

.bonus-card.colored::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
}

.bonus-icon {
    width: 150px;
    height: 150px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    flex-shrink: 0;
}

.bonus-card:hover .bonus-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.bonus-card.colored .bonus-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.bonus-card.colored:hover .bonus-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.bonus-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    flex: 1;
    justify-content: flex-start;
}

.bonus-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #FFF;
    font-family: 'Styrene A Web';
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.bonus-card p {
    font-size: 14px;
    line-height: 22px;
    color: #CCC;
    margin: 0;
    opacity: 0.9;
}

.bonus-card.colored p {
    color: rgba(255, 255, 255, 0.9);
}

/* Statistics Cards */
.stats-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 0 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.stat-card.blue {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.stat-card.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.stat-card.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.stat-card.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
}

.stat-card.blue .stat-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.stat-card.green .stat-icon {
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
}

.stat-card.purple .stat-icon {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

.stat-card.cyan .stat-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #FFF;
    margin-bottom: 8px;
    font-family: 'Styrene A Web';
}

.stat-label {
    font-size: 14px;
    color: #9CA3AF;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Updated History Section */
.history-box {
    width: 100%;
    margin-top: 65px;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
}

.history-tabs {
    display: flex;
    background: #0f0f0f;
    border-bottom: 1px solid #2a2a2a;
    padding: 8px;
    gap: 8px;
}

.history-tab {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(254, 216, 71, 0.2);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 700;
    font-family: 'Styrene A Web';
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.history-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(254, 216, 71, 0.2), transparent);
    transition: left 0.6s ease;
}

.history-tab:hover {
    color: #FED847;
    background: rgba(254, 216, 71, 0.1);
    border-color: rgba(254, 216, 71, 0.4);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(254, 216, 71, 0.2);
}

.history-tab:hover::before {
    left: 100%;
}

.history-tab.selected {
    color: #1a1a2e;
    background: linear-gradient(135deg, #FED847 0%, #FFB800 100%);
    border-color: #FED847;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(254, 216, 71, 0.4);
    font-weight: 800;
}

.history-tab.selected:hover {
    background: linear-gradient(135deg, #FFB800 0%, #FED847 100%);
    color: #1a1a2e;
    border-color: #FFB800;
    box-shadow: 0 15px 40px rgba(254, 216, 71, 0.5);
}

.history-tab.selected::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #FFB800 0%, #FED847 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(254, 216, 71, 0.6);
}

.data-table {
    background: #1a1a1a;
    padding: 0;
    width: 100%;
    border-radius: 0;
    border: none;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px 24px;
    border-bottom: 1px solid #2a2a2a;
    font-weight: 600;
    color: #9CA3AF;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
    background: #0f0f0f;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 16px 24px;
    border-bottom: 1px solid #2a2a2a;
    color: #FFF;
    font-size: 14px;
    text-align: center;
    transition: background 0.2s ease;
}

.table-row:hover {
    background: rgba(90, 69, 209, 0.05);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row .game-name {
    font-weight: 600;
    color: #FFF;
}

.table-row .player-name {
    color: #9CA3AF;
}

.table-row .bet-amount {
    color: #FED847;
    font-weight: 500;
}

.table-row .payout-amount {
    color: #22c55e;
    font-weight: 600;
}

/* Bonus Banner */
.bonus-banner-box {
    margin-top: 65px;
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #363646;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.bonus-banner-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 69, 209, 0.1) 0%, rgba(186, 106, 255, 0.05) 100%);
    pointer-events: none;
}

.bonus-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 40px;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.bonus-banner-text {
    flex: 1;
    position: static;
    width: auto;
    top: auto;
    left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
}

.bonus-banner-text .banner-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.bonus-banner-text .banner-desc {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.bonus-banner-text .banner-text {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

.bonus-banner-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    max-width: 400px;
}

.bonus-banner-character {
    width: auto;
    height: 100%;
    max-height: 350px;
    object-fit: contain;
    object-position: center;
    position: static;
    left: auto;
    bottom: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.bonus-banner-character:hover {
    transform: scale(1.05);
}

.bonus-decoration-image {
    position: absolute;
    top: 20%;
    right: 20px;
    transform: translateY(-50%);
    width: 150px;
    height: auto;
    opacity: 0.9;
    z-index: 3;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    animation: floatDecoration 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
}

@keyframes floatDecoration {
    0%, 100% {
        transform: translateY(-50%) translateX(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-50%) translateX(5px) rotate(2deg);
    }
}

.bonus-banner-image:hover .bonus-decoration-image {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    animation-play-state: paused;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    right: 0;
    top: 90px;
    width: 350px;
    height: 500px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #FED847;
    border-radius: 15px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(254, 216, 71, 0.3);
}

.chat-widget.active {
    display: flex;
}

.chat-header {
    padding: 15px 20px;
    border-bottom: 2px solid rgba(254, 216, 71, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #2a2a4e 0%, #26314e 100%);
    border-radius: 13px 13px 0 0;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-icon {
    font-size: 20px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.chat-header h3 {
    color: #FED847;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(254, 216, 71, 0.5);
}

.chat-header button {
    background: none;
    border: none;
    color: #FED847;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.chat-header button:hover {
    background: rgba(254, 216, 71, 0.2);
    transform: scale(1.1);
}

.chat-messages {
    flex: 1;
    padding: 15px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.chat-message {
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 85%;
    word-wrap: break-word;
    line-height: 1.4;
    font-size: 14px;
    position: relative;
    animation: messageSlideIn 0.3s ease-out;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.chat-avatar {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-avatar {
    background: linear-gradient(135deg, #FED847 0%, #FFB800 100%);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.chat-message.user-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFF;
    align-self: flex-end;
    margin-left: auto;
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.chat-message.user-message .chat-avatar {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: #FFF;
}

.chat-message.system-message,
.chat-message.bot-message {
    background: linear-gradient(135deg, #2a2a4e 0%, #26314e 100%);
    color: #FFF;
    align-self: flex-start;
    margin-right: auto;
    border: 1px solid rgba(254, 216, 71, 0.3);
    box-shadow: 0 4px 15px rgba(254, 216, 71, 0.1);
}

.chat-message.system-message::before,
.chat-message.bot-message::before {
    content: 'ℹ️';
    font-size: 16px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #007AFF;
    color: white;
    border-radius: 50%;
    font-size: 12px;
}

.chat-message .username {
    font-weight: 600;
    color: #333;
    margin-right: 4px;
    font-size: 13px;
}

.chat-message .message {
    color: #666;
    font-size: 14px;
    flex: 1;
}

.chat-message-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.chat-message-content .username {
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 4px;
    opacity: 0.9;
}

.chat-message-content .message {
    font-size: 14px;
    line-height: 1.4;
    color: #FFFFFF;
}

.chat-message.user-message .chat-message-content .username {
    color: rgba(255, 255, 255, 0.8);
}

.chat-message.user-message .chat-message-content .message {
    color: #FFFFFF;
}

.chat-message.bot-message .chat-message-content .username {
    color: #FED847;
}

.chat-message.bot-message .chat-message-content .message {
    color: #FFFFFF;
}

.chat-message.system-message .chat-message-content .username {
    color: #FED847;
}

.chat-message.system-message .chat-message-content .message {
    color: #FFFFFF;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-input {
    padding: 15px 20px;
    border-top: 2px solid rgba(254, 216, 71, 0.3);
    display: flex;
    gap: 10px;
    background: linear-gradient(135deg, #2a2a4e 0%, #26314e 100%);
    border-radius: 0 0 13px 13px;
}

.chat-input input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(254, 216, 71, 0.3);
    border-radius: 25px;
    color: #FFF;
    font-size: 14px;
    transition: all 0.3s ease;
}

.chat-input input:focus {
    border-color: #FED847;
    box-shadow: 0 0 0 2px rgba(254, 216, 71, 0.2);
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.chat-input input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.chat-input button {
    padding: 12px;
    background: linear-gradient(135deg, #FED847 0%, #FFB800 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(254, 216, 71, 0.3);
}

.chat-input button:hover {
    background: linear-gradient(135deg, #FFB800 0%, #FED847 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(254, 216, 71, 0.5);
}

/* Profile Widget */
.profile-widget {
    position: fixed;
    right: 0;
    top: 90px;
    width: 300px;
    background: #2C2C3A;
    border: 1px solid #363646;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.profile-widget.active {
    display: flex;
}

.profile-header {
    padding: 15px 20px;
    border-bottom: 1px solid #363646;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-header h3 {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
}

.profile-header button {
    background: none;
    border: none;
    color: #FFF;
    font-size: 20px;
    cursor: pointer;
}

.profile-content {
    padding: 20px;
    text-align: center;
}

.profile-avatar {
    margin-bottom: 15px;
}

.profile-info h4 {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-info p {
    color: #FED847;
    font-size: 14px;
    margin-bottom: 20px;
}

.profile-stats {
    text-align: left;
}

.stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.stat .label {
    color: #CCC;
    font-size: 14px;
}

.stat .value {
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: linear-gradient(135deg, #1F1E25 0%, #2D2C35 100%);
    border-radius: 20px;
    padding: 40px;
    width: 90vw;
    max-width: 500px;
    border: 2px solid #715AE0;
    outline: none;
    position: relative;
    text-align: center;
}

.welcome-modal {
    background: linear-gradient(135deg, #1F1E25 0%, #2D2C35 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 90vw;
    height: 90vh;
    max-width: 1200px;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Welcome Carousel Styles */
.welcome-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.welcome-slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.welcome-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
}

.welcome-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.welcome-slide.prev {
    transform: translateX(-100%);
}

.welcome-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
}

/* Carousel Navigation */
.welcome-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(254, 216, 71, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FED847;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.welcome-nav:hover {
    background: rgba(254, 216, 71, 0.2);
    border-color: #FED847;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(254, 216, 71, 0.3);
}

.welcome-prev {
    left: 20px;
}

.welcome-next {
    right: 20px;
}

/* Carousel Dots */
.welcome-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.welcome-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(254, 216, 71, 0.5);
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.welcome-dot.active {
    background: #FED847;
    border-color: #FED847;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(254, 216, 71, 0.5);
}

.welcome-dot:hover {
    background: rgba(254, 216, 71, 0.7);
    border-color: #FED847;
    transform: scale(1.1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #FFF;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.modal-button {
    background: #fff0b2ff;
    color: #1F1E25;
    padding: 12px 40px;
    border-radius: 8px;
    font-family: 'Styrene A Web';
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    margin-bottom: 20px;
}

.modal-button:hover {
    opacity: 0.9;
}

/* Download Modal */
.download-modal h2 {
    color: #FED847;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.download-modal p {
    color: #FFF;
    font-size: 16px;
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
}

.windows-btn {
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    color: #FFF;
}

.mac-btn {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: #FFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logo-icon {
        display: none;
    }
}

@media (max-width: 764px) {
    .main-header {
        padding: 8px 14px;
    }
    
    .download-button {
        min-width: 120px;
        padding: 10px 16px;
        font-size: 13px;
        height: 44px;
    }
    
    .chat-button {
        display: none;
    }
    
    .banner-box {
        height: 184px;
        border-radius: 10px;
    }
    
    .banner-image-container {
        left: unset;
        right: -45px;
        bottom: 0;
        width: 285px;
        height: auto;
    }
    
    .banner-character {
        height: auto;
    }
    
    .banner-text-box {
        transform: translate(-50%);
        left: 50%;
        width: 100%;
        padding: 0 20px;
        top: 10px;
    }
    
    .banner-title {
        font-size: 18px;
        line-height: 23px;
    }
    
    .banner-desc {
        font-size: 23px;
        line-height: 34px;
    }
    
    .banner-text {
        display: none;
    }
    
    .game-list-box > span {
        font-size: 19px;
        line-height: 24px;
    }
    
    .game-list {
        gap: 20px;
        margin-top: 6px;
    }
    
    .game-button {
        width: 144px;
        height: 170px;
    }
    
    .game-button img {
        height: 145px;
    }
    
    .game-hover-overlay {
        bottom: 25px;
    }
    
    .game-download-btn {
        padding: 8px 16px;
        font-size: 12px;
        gap: 6px;
        border-radius: 40px;
    }
    
    .sparkle-icon {
        font-size: 14px;
    }
    
    .game-info {
        padding: 4px 8px;
        gap: 2px;
    }
    
    .game-rating {
        font-size: 10px;
        gap: 4px;
    }
    
    .stars {
        font-size: 12px;
    }
    
    .game-players {
        font-size: 9px;
        gap: 3px;
    }
    
    .game-players svg {
        width: 10px;
        height: 10px;
    }
    
    .bonus-list {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        padding: 0 15px;
    }
    
    .bonus-card {
        width: 100%;
        max-width: 600px;
        min-width: unset;
        padding: 25px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }
    
    .bonus-content h3 {
        font-size: 20px;
    }
    
    .bonus-icon {
        width: 60px;
        height: 60px;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .bonus-banner-box {
        height: auto;
        min-height: 250px;
    }
    
    .bonus-banner-content {
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
        text-align: center;
    }
    
    .bonus-banner-text {
        order: 1;
        top: auto;
        width: 100%;
        padding: 0;
        left: auto;
    }
    
    .bonus-banner-image {
        order: 2;
        height: 200px;
        max-width: none;
        width: 100%;
    }
    
    .bonus-banner-character {
        max-height: 200px;
        width: auto;
        right: auto;
        bottom: auto;
    }
    
    .bonus-decoration-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .download-button {
        min-width: 100px;
        padding: 8px 12px;
        font-size: 12px;
        height: 40px;
        gap: 6px;
    }
    
    .carousel-box {
        padding-right: 14px;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 0 10px;
    }
    
    .stat-card {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .bonus-list {
        padding: 0 10px;
        gap: 20px;
    }
    
    .bonus-card {
        padding: 20px;
        min-width: unset;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }
    
    .bonus-content h3 {
        font-size: 18px;
    }
    
    .bonus-content p {
        font-size: 13px;
        line-height: 20px;
    }
    
    .bonus-icon {
        width: 55px;
        height: 55px;
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .history-box {
        margin: 0 10px;
        margin-top: 40px;
    }
    
    .history-tabs {
        padding: 6px;
        gap: 6px;
    }
    
    .history-tab {
        padding: 10px 14px;
        font-size: 10px;
        letter-spacing: 0.5px;
        min-height: 40px;
        border-radius: 20px;
    }
    
    .history-tab.selected::after {
        width: 50%;
        height: 2px;
    }
    
    .table-header, .table-row {
        padding: 12px 16px;
        gap: 10px;
        font-size: 11px;
        grid-template-columns: 1fr 1fr 0.8fr 0.8fr;
    }
    
    .chat-widget, .profile-widget {
        width: 100%;
        right: 0;
        left: 0;
    }
    
    .modal-content {
        width: 95vw;
        padding: 20px;
    }
    
    .welcome-modal {
        width: 95vw;
        height: 80vh;
        padding: 15px;
    }
    
    .welcome-nav {
        width: 40px;
        height: 40px;
    }
    
    .welcome-prev {
        left: 10px;
    }
    
    .welcome-next {
        right: 10px;
    }
    
    .welcome-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .welcome-dot {
        width: 10px;
        height: 10px;
    }
    
    .notification-games {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .notification-game-item {
        padding: 15px;
    }
    
    .notification-game-item img {
        width: 60px;
        height: 60px;
    }
    
    .notification-modal h2 {
        font-size: 24px;
    }
    
    .notification-description {
        font-size: 16px;
    }
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-top: 1px solid #2a2a2a;
    margin-top: 80px;
    padding: 60px 0 0;
    color: #FFF;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.brand-section {
    max-width: none;
}

.brand-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-left: -10%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-logo-container:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(254, 216, 71, 0.3);
    transform: scale(1.05);
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.brand-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-characters {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    overflow: visible;
}

.footer-character-img {
    width: 200px;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    z-index: 2;
    margin-right: 20px;
}

.floating-coins {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 240px;
    height: 240px;
    z-index: 1;
}

.floating-coin {
    position: absolute;
    width: 25px;
    height: 25px;
    opacity: 0.8;
    animation: floatCoin 4s ease-in-out infinite;
}

.coin-1 {
    top: 10px;
    left: 30px;
    animation-delay: 0s;
}

.coin-2 {
    top: 40px;
    right: 20px;
    animation-delay: 1s;
}

.coin-3 {
    bottom: 60px;
    left: 10px;
    animation-delay: 2s;
}

.coin-4 {
    bottom: 20px;
    right: 40px;
    animation-delay: 3s;
}

.coin-5 {
    top: 80px;
    left: 80px;
    animation-delay: 0.5s;
}

@keyframes floatCoin {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(90deg);
    }
    50% {
        transform: translateY(-4px) rotate(180deg);
    }
    75% {
        transform: translateY(-12px) rotate(270deg);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.brand-section {
    max-width: none;
}

.brand-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.footer-logo-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-logo-container:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(254, 216, 71, 0.3);
    transform: scale(1.05);
}

.footer-logo-img {
    margin-left: -70%;
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.brand-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand-name {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Styrene A Web';
    color: #FFF;
    margin-bottom: 0;
}

.footer-brand-name span {
    color: #FED847;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: #CCC;
    margin: 0;
}

.footer-trust {
    font-size: 14px;
    line-height: 1.5;
    color: #999;
    font-style: italic;
    margin: 0;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Styrene A Web';
    color: #FFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #CCC;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: #FED847;
}

.footer-bottom {
    background: #0a0a0a;
    border-top: 1px solid #2a2a2a;
    padding: 25px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.footer-contact {
    font-size: 13px;
    color: #CCC;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Scrollbar Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 30px;
    }
    
    .brand-section {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
    
    .brand-content {
        gap: 20px;
    }
    
    .footer-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .footer-brand-name {
        font-size: 24px;
    }
    
    .footer-characters {
        grid-column: 1 / -1;
        height: 150px;
        margin-top: 20px;
    }
    
    .footer-character-img {
        width: 150px;
    }
    
    .floating-coins {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .brand-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .footer-logo-container {
        align-self: center;
    }
    
    .footer-logo-img {
        width: 45px;
        height: 45px;
    }
    
    .footer-brand-name {
        font-size: 22px;
    }
    
    .footer-characters {
        height: 120px;
        margin-top: 15px;
    }
    
    .footer-character-img {
        width: 120px;
    }
    
    .floating-coins {
        width: 150px;
        height: 150px;
    }
    
    .floating-coin {
        width: 20px;
        height: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-bottom-content {
        padding: 0 15px;
    }
    
    .brand-content {
        gap: 12px;
    }
    
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .footer-brand-name {
        font-size: 20px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .footer-characters {
        display: none;
    }
}
.game-list::-webkit-scrollbar,
.chat-messages::-webkit-scrollbar {
    width: 3px;
}

.game-list::-webkit-scrollbar-track,
.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
}

.game-list::-webkit-scrollbar-thumb,
.chat-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(48.57deg, #5A45D1 24.42%, #BA6AFF 88.19%);
    border-radius: 2px;
}

/* Hide scrollbar for some elements */
body::-webkit-scrollbar {
    width: 0px;
}

/* Testimonials Section */
.testimonials-section {
    width: 100%;
    padding: 30px 50px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin-top: 40px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 25px;
}

.testimonials-header h2 {
    color: #FED847;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(254, 216, 71, 0.5);
}

.testimonials-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    overflow: visible;
    max-width: 1000px;
    position: relative;
    height: 180px;
    width: 100%;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(254, 216, 71, 0.2);
    border-radius: 15px;
    padding: 18px;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    opacity: 0.3;
    transform: scale(0.9);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%) scale(0.9);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    border-color: #FED847;
    box-shadow: 0 8px 25px rgba(254, 216, 71, 0.3);
    z-index: 3;
}

.testimonial-card.prev {
    opacity: 0.6;
    transform: translateX(-120%) scale(0.95);
    z-index: 2;
}

.testimonial-card.next {
    opacity: 0.6;
    transform: translateX(20%) scale(0.95);
    z-index: 2;
}

.testimonial-rating {
    color: #FED847;
    font-size: 14px;
    letter-spacing: 1px;
}

.testimonial-review {
    color: #FFFFFF;
    font-size: 13px;
    line-height: 1.4;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #FED847;
    object-fit: cover;
}

.testimonial-info h4 {
    color: #FED847;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    margin: 1px 0;
}

.testimonial-nav {
    background: rgba(254, 216, 71, 0.1);
    border: 2px solid rgba(254, 216, 71, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FED847;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-nav:hover {
    background: rgba(254, 216, 71, 0.2);
    border-color: #FED847;
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #FED847;
    transform: scale(1.2);
}

/* Mobile responsive styles for testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 25px 20px;
    }
    
    .testimonials-header h2 {
        font-size: 20px;
    }
    
    .testimonials-header p {
        font-size: 13px;
    }
    
    .testimonials-carousel {
        gap: 15px;
    }
    
    .testimonials-container {
        max-width: 280px;
        height: 200px;
    }
    
    .testimonial-card {
        width: 260px;
        padding: 16px;
        gap: 10px;
    }
    
    .testimonial-card.prev,
    .testimonial-card.next {
        display: none;
    }
    
    .testimonial-nav {
        width: 35px;
        height: 35px;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-info h4 {
        font-size: 13px;
    }
    
    .testimonial-info p {
        font-size: 10px;
    }
    
    .testimonial-review {
        font-size: 12px;
    }
}

/* Enhanced Bonus Section */
.enhanced-bonus-section {
    background: linear-gradient(135deg, #2a2a3a 0%, #1a1a2a 100%);
    border-radius: 20px;
    margin: 40px 20px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid #363646;
}

.enhanced-bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 69, 209, 0.1) 0%, rgba(186, 106, 255, 0.05) 100%);
    pointer-events: none;
}

.enhanced-bonus-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.enhanced-bonus-text {
    flex: 1;
    max-width: 500px;
}

.enhanced-bonus-text h2 {
    font-size: 42px;
    font-weight: 900;
    color: #FFF;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Styrene A Web';
    text-shadow: -6px 6px 0px rgba(0, 0, 0, 0.25);
}

.enhanced-bonus-text h2 span {
    color: #FED847;
}

.enhanced-bonus-text h3 {
    font-size: 24px;
    font-weight: 900;
    color: #FFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Styrene A Web';
    text-shadow: -4px 4px 0px rgba(0, 0, 0, 0.25);
}

.enhanced-bonus-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #CCC;
    margin: 0 0 25px 0;
}

.enhanced-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 45px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD700 100%);
    border: 3px solid #FFD700;
    border-radius: 50px;
    color: #1a1a2e;
    font-family: 'Styrene A Web';
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.4),
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.enhanced-download-btn:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF6B35, #F7931E, #FFD700, #FF6B35);
    border-radius: 50px;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.enhanced-download-btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.8s ease;
}

.enhanced-download-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.6),
        0 0 50px rgba(255, 215, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #F7931E 0%, #FFD700 50%, #FF6B35 100%);
    border-color: #FF6B35;
}

.enhanced-download-btn:hover:after {
    left: 100%;
}

.enhanced-download-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.enhanced-download-btn svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.enhanced-bonus-characters {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 300px;
}

.enhanced-bonus-character {
    width: auto;
    height: 100%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-coin, .floating-gem {
    position: absolute;
    font-size: 24px;
    animation: floatElement 3s ease-in-out infinite;
    opacity: 0.8;
}

.coin-btc {
    top: 20%;
    left: 10%;
    color: #F7931A;
    animation-delay: 0s;
}

.coin-eth {
    top: 30%;
    right: 15%;
    color: #627EEA;
    animation-delay: 1s;
}

.coin-dollar {
    bottom: 30%;
    left: 20%;
    color: #22C55E;
    animation-delay: 2s;
}

.gem-1 {
    top: 60%;
    right: 10%;
    animation-delay: 0.5s;
}

.gem-2 {
    bottom: 20%;
    right: 30%;
    animation-delay: 1.5s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(90deg);
    }
    50% {
        transform: translateY(-5px) rotate(180deg);
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
    }
}

/* Enhanced Footer */
.enhanced-footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-top: 1px solid #2a2a2a;
    margin-top: 80px;
    padding: 60px 0 0;
    color: #FFF;
}

.enhanced-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    margin-bottom: 40px;
}

.footer-brand-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.footer-brand-info {
    flex: 2;
}

.footer-logo-section {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.footer-brand-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-brand-text h3 {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Styrene A Web';
    color: #FFF;
    margin-bottom: 15px;
}

.footer-brand-text h3 span {
    color: #FED847;
}

.footer-brand-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #CCC;
    margin-bottom: 15px;
}

.footer-trust-text {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.footer-character-section {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.footer-main-character {
    width: auto;
    height: 100%;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.footer-floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-coin {
    position: absolute;
    font-size: 20px;
    opacity: 0.7;
    animation: floatCoin 4s ease-in-out infinite;
}

.footer-coin.coin-1 {
    top: 10%;
    left: 10%;
    color: #F7931A;
    animation-delay: 0s;
}

.footer-coin.coin-2 {
    top: 20%;
    right: 15%;
    color: #627EEA;
    animation-delay: 1s;
}

.footer-coin.coin-3 {
    bottom: 30%;
    left: 20%;
    color: #22C55E;
    animation-delay: 2s;
}

.footer-coin.coin-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

.enhanced-footer-bottom {
    background: #0a0a0a;
    border-top: 1px solid #2a2a2a;
    padding: 25px 0;
}

.enhanced-footer-bottom .footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.social-media-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc, #229ED9);
    color: white;
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.social-link.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
}

.social-link.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    color: white;
}

.social-link.twitter {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877F2, #166FE5);
    color: white;
}

.social-link.news {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0A66C2, #004182);
    color: white;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-link {
    color: #CCCCCC;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.footer-link:hover {
    color: #FED847;
}

/* Enhanced tooltip styles */
.footer-link[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #FFF;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 400;
    white-space: normal;
    width: 200px;
    text-align: center;
    z-index: 1000;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.4;
    animation: tooltipFadeIn 0.3s ease;
}

.footer-link[title]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    margin-bottom: 2px;
    animation: tooltipFadeIn 0.3s ease;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.footer-copyright {
    color: #888888;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

/* Responsive Design for Enhanced Sections */
@media (max-width: 768px) {
    .enhanced-bonus-section {
        margin: 20px 10px;
        padding: 40px 20px;
    }
    
    .enhanced-bonus-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .enhanced-bonus-text h2 {
        font-size: 32px;
    }
    
    .enhanced-bonus-text h3 {
        font-size: 20px;
    }
    
    .enhanced-download-btn {
        font-size: 18px;
        padding: 18px 35px;
        min-width: 250px;
        gap: 12px;
    }
    
    .enhanced-bonus-characters {
        height: 200px;
    }
    
    .enhanced-footer-content {
        padding: 0 20px;
    }
    
    .footer-brand-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .enhanced-footer-bottom .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .social-media-links {
        gap: 12px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    /* Disable tooltips on mobile for better UX */
    .footer-link[title]:hover::after,
    .footer-link[title]:hover::before {
        display: none;
    }
}

/* Game Info Modal */
.game-info-modal {
    max-width: 500px;
    width: 90vw;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #FED847;
    border-radius: 20px;
    overflow: hidden;
}

.game-info-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.game-info-icon {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #FED847;
    box-shadow: 0 8px 25px rgba(254, 216, 71, 0.3);
}

.game-info-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info-details {
    width: 100%;
}

.game-info-details h2 {
    color: #FED847;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(254, 216, 71, 0.5);
}

.game-info-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.game-info-rating .stars {
    color: #FED847;
    font-size: 18px;
    letter-spacing: 2px;
}

.game-info-rating .rating-number {
    color: #FFF;
    font-weight: 700;
    font-size: 16px;
}

.game-info-rating .players-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #CCCCCC;
    font-size: 14px;
}

.game-info-rating .players-count svg {
    color: #FED847;
}

.game-description {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.game-info-actions {
    display: flex;
    justify-content: center;
}

.play-now-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-family: 'Styrene A Web';
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
    background: linear-gradient(135deg, #FED847 0%, #FFB800 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(254, 216, 71, 0.4);
}

.play-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 216, 71, 0.6);
    background: linear-gradient(135deg, #FFB800 0%, #FED847 100%);
}

/* Mobile responsive styles for game info modal */
@media (max-width: 768px) {
    .game-info-modal {
        width: 95vw;
        max-width: none;
    }
    
    .game-info-content {
        padding: 20px;
        gap: 15px;
    }
    
    .game-info-icon {
        width: 100px;
        height: 100px;
    }
    
    .game-info-details h2 {
        font-size: 24px;
    }
    
    .game-info-rating {
        gap: 10px;
    }
    
    .game-description {
        font-size: 14px;
    }
    
    .play-now-btn {
        width: 100%;
        min-width: auto;
        padding: 18px 30px;
        font-size: 15px;
    }
}

/* Notification Modal */
.notification-modal {
    max-width: 600px;
    width: 90vw;
}

.notification-modal h2 {
    color: #FED847;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
}

.notification-description {
    color: #FFF;
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.5;
}

.notification-games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.notification-game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.notification-game-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.notification-game-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 12px;
    object-fit: cover;
}

.notification-game-item span {
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification-ok-btn {
    background: linear-gradient(135deg, #5A45D1 0%, #BA6AFF 100%);
    color: #FFF;
    padding: 15px 40px;
    border-radius: 8px;
    font-family: 'Styrene A Web';
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 180px;
}

.notification-ok-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 69, 209, 0.4);
}

.notification-download-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFF;
    padding: 15px 10px;
    border-radius: 8px;
    font-family: 'Styrene A Web';
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 250px;
}

.notification-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.notification-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.notification-ok-btn:hover {
    background: linear-gradient(135deg, #4A35C1 0%, #AA5AEF 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 69, 209, 0.4);
}
/* Mobile responsive styles for notification buttons */
@media (max-width: 768px) {
    .notification-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .notification-ok-btn,
    .notification-download-btn {
        width: 100%;
        min-width: auto;
        padding: 18px 30px;
        font-size: 14px;
    }
    
    .notification-modal {
        width: 95vw;
        max-width: none;
        margin: 20px;
    }
    
    .notification-games {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .notification-game-item {
        padding: 15px;
    }
    
    .notification-game-item img {
        width: 60px;
        height: 60px;
    }
}