@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.sidebar-gradient {
    background: linear-gradient(180deg, #2D1B69 0%, #11101D 100%);
}

.main-gradient {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #06B6D4 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.game-card {
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, #1e1b4b, #312e81);
}

.feature-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.bonus-button {
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bonus-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    margin: 8px 0;
    border-radius: 8px;
    color: #A855F7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-item:hover {
    background: rgba(168, 85, 247, 0.1);
    color: #E879F9;
}

.sidebar-item i {
    margin-right: 12px;
    width: 20px;
}

.promotion-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 120px;
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        position: fixed;
        z-index: 1000;
        transition: transform 0.3s ease;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0 !important;
    }
}

.table-style {
    border-collapse: collapse;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.table-style th,
.table-style td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-style th {
    background: rgba(139, 92, 246, 0.2);
    font-weight: 600;
    color: #E879F9;
}

.table-style td {
    color: #D1D5DB;
}
.game-card {
    cursor: pointer;
}