
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #0b0e11;
    /* To'q qora fon */
    color: white;
    padding: 15px;
}

/* Yuqori qism */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.cancel-btn {
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
}

.page-title {
    font-weight: bold;
    font-size: 18px;
}

.nav-icons {
    position: relative;
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #333;
}

.badge {
    position: absolute;
    top: -5px;
    left: -5px;
    background: #e74c3c;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

/* Qidiruv bo'limi */
.search-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
}

.search-input-wrapper input {
    width: 100%;
    background: #1c1f26;
    border: 1px solid #2c2f36;
    padding: 12px 12px 12px 40px;
    border-radius: 12px;
    color: white;
    outline: none;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #5f6368;
}

.main-title {
    margin: 25px 0;
    font-size: 32px;
    font-weight: 800;
}

/* O'yinlar ro'yxati */
.games-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-item {
    background: #16191e;
    border: 1px solid #24272c;
    border-radius: 20px;
    display: flex;
    padding: 15px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.game-item:active {
    transform: scale(0.97);
}

.game-img-container {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 15px;
}

.game-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-details h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.game-details p {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 12px;
}

.status-btn {
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
}

.status-btn.active {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.status-btn.disabled {
    background: rgba(149, 165, 166, 0.2);
    color: #95a5a6;
}
.back-btn {
    text-decoration: none; /* Tagidagi chiziqni olib tashlaydi */
    color: white; /* Ikonka rangi oq bo'lishi uchun */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.back-btn:active {
    transform: scale(0.8); /* Bosilganda kichrayish effekti */
    opacity: 0.6;
}

.back-icon {
    font-size: 20px;
    cursor: pointer;
}
.btn-back {
    
    display: inline-block;
    
    margin-bottom: 15px;
    
    color: #60a5fa;
    
    font-weight: 600;
    
    text-decoration: none;
    
    transition: 0.2s;
    
}

.btn-back:hover {
    
    color: #93c5fd;
    
    transform: translateX(-3px);
    
}