* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #fff;
}

.app-container {
    display: flex;
    min-height: 100vh;
    background: #0a0a0a;
}

.sidebar {
    width: 260px;
    background: #141414;
    padding: 0;
    overflow-y: auto;
    border-right: 1px solid #1f1f1f;
}

.logo {
    padding: 25px 20px;
    border-bottom: 1px solid #1f1f1f;
}

.logo h1 {
    color: #e8d639;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.sidebar-nav {
    padding: 15px 10px;
    border-bottom: 1px solid #1f1f1f;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #1a1a1a;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 8px;
    font-size: 13px;
    transition: background 0.2s;
    position: relative;
}

.nav-item:hover {
    background: #222;
}

.nav-item .icon {
    font-size: 18px;
    width: 24px;
}

.badge {
    margin-left: auto;
    background: #2a2a2a;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
    color: #888;
}

.badge-small {
    margin-left: auto;
    font-size: 9px;
    color: #666;
}

.sidebar-section {
    padding: 15px 20px;
    border-bottom: 1px solid #1f1f1f;
}

.sidebar-section h3 {
    font-size: 12px;
    margin-bottom: 12px;
    color: #666;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.submenu {
    list-style: none;
    padding-left: 0;
}

.submenu li {
    padding: 8px 12px;
    color: #888;
    cursor: pointer;
    font-size: 13px;
    border-radius: 6px;
    margin-bottom: 4px;
}

.submenu li:hover {
    background: #1a1a1a;
    color: #fff;
}

.vip-button {
    width: calc(100% - 40px);
    margin: 15px 20px;
    padding: 12px;
    background: linear-gradient(90deg, #e8d639 0%, #a8ff35 100%);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
}

.sidebar-footer {
    padding: 15px 20px;
}

.sidebar-footer > div {
    padding: 10px 0;
    color: #666;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-footer > div:hover {
    color: #fff;
}

.badge-yellow {
    background: #e8d639;
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    margin-left: 5px;
}

.main-content {
    flex: 1;
    padding: 0;
    overflow-y: auto;
    background: #0a0a0a;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #0a0a0a;
    border-bottom: 1px solid #1f1f1f;
}

.search-bar input {
    width: 350px;
    padding: 10px 20px;
    background: #141414;
    border: 1px solid #1f1f1f;
    border-radius: 20px;
    color: #fff;
    outline: none;
    font-size: 13px;
}

.search-bar input::placeholder {
    color: #555;
}

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

.sound-btn,
.signin-btn,
.signup-btn {
    padding: 8px 18px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
}

.sound-btn {
    background: #1a1a1a;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.signin-btn {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.signin-btn:hover {
    background: #2a2a2a;
    border-color: #e8d639;
    transform: translateY(-2px);
}

.signup-btn {
    background: #e8d639;
    color: #000;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background: #f0de50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 214, 57, 0.4);
}

.hero-banner {
    background: url('img/velora.png') center/cover no-repeat, linear-gradient(135deg, #1a1410 0%, #0a0a0a 100%);
    border-radius: 0;
    padding: 50px 40px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-content .highlight {
    color: #e8d639;
}

.hero-content p {
    font-size: 16px;
    color: #999;
    margin-bottom: 30px;
}

.cta-button {
    padding: 14px 40px;
    background: #e8d639;
    border: none;
    border-radius: 25px;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 500px;
    height: auto;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0;
    border-bottom: 1px solid #1f1f1f;
}

.quick-link-card {
    background: #141414;
    border-right: 1px solid #1f1f1f;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.quick-link-card:last-child {
    border-right: none;
}

.quick-link-card:hover {
    background: #1a1a1a;
}

.quick-link-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.quick-link-card span {
    font-weight: 700;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
}

.categories {
    padding: 30px 40px;
    background: #0a0a0a;
}

.categories h2 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-item {
    padding: 30px 25px;
    background: #141414;
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    min-width: 120px;
}

.category-item:hover {
    background: #1a1a1a;
    border-color: #e8d639;
    transform: translateY(-2px);
}

.new-games {
    padding: 30px 40px;
    background: #0a0a0a;
}

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

.section-header h2 {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.count {
    background: #1a1a1a;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.see-all {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}

.see-all:hover {
    background: #1a1a1a;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.game-card {
    background: #141414;
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: #e8d639;
    box-shadow: 0 10px 30px rgba(232, 214, 57, 0.2);
}

.game-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    display: block;
}

.game-card p {
    padding: 12px;
    text-align: center;
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.promo-banner {
    background: linear-gradient(135deg, #2a1a1a 0%, #1a1010 100%);
    border-radius: 0;
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 0 0;
    position: relative;
    overflow: hidden;
}

.promo-content {
    max-width: 500px;
}

.promo-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.promo-content p {
    color: #999;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.6;
}

.countdown {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 70px;
}

.time-block .label {
    font-size: 11px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.time-block .value {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
}

.signup-button {
    padding: 14px 40px;
    background: #e8d639;
    border: none;
    border-radius: 25px;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
}

.promo-image img {
    max-width: 450px;
    height: auto;
}

@media (max-width: 1400px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .sidebar {
        display: none;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-bar input {
        width: 100%;
    }
    
    .header-actions {
        width: 100%;
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-banner,
    .promo-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image,
    .promo-image {
        margin-top: 30px;
    }
}

.content-section {
    padding: 50px 40px;
    background: #0a0a0a;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 15px 0;
    color: #fff;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 20px;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.content-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e8d639;
    font-weight: 700;
}

.content-section ul li strong {
    color: #fff;
    font-weight: 600;
}
