* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    overflow-x: hidden;
    font-family: 'Poppins', Arial, sans-serif;
    background: #1a093b;
    color: #fff;
}

/* Анимированный фон */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.background-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, #5865F2 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 2px solid rgba(88, 101, 242, 0.3);
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.admin-btn {
    padding: 12px 20px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    background: rgba(34, 197, 94, 0.2);
    transform: translateY(-2px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.3);
}

.logo-text h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text p {
    color: #a1a1aa;
    font-size: 0.9rem;
}

/* Error Message */
.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    color: #ef4444;
    text-align: center;
    backdrop-filter: blur(20px);
}

.error-message i {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Auth Section */
.auth-section {
    text-align: center;
    padding: 60px 20px;
    background: rgba(24, 24, 27, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(88, 101, 242, 0.2);
    margin-bottom: 40px;
}

.auth-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-section p {
    font-size: 1.1rem;
    color: #d4d4d8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.discord-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.3);
}

.discord-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.4);
}

.discord-login-btn i {
    font-size: 1.3rem;
}

/* Profile Section */
.profile-section {
    display: none;
    background: rgba(24, 24, 27, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(88, 101, 242, 0.2);
    padding: 40px;
    margin-bottom: 40px;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0 40px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(88, 101, 242, 0.2);
}

.profile-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #5865F2;
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.3);
}

.profile-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.profile-info p {
    color: #a1a1aa;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.profile-right {
    display: flex;
    align-items: center;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(88, 101, 242, 0.2);
    min-width: 120px;
}

.stat-item.wide {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15) 0%, rgba(114, 137, 218, 0.1) 100%);
    border: 1px solid rgba(88, 101, 242, 0.3);
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 20px 20px;
    min-width: 120px;
    width: 400px;
    border-radius: 12px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item.wide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #5865F2, #7289DA);
}

.stat-item.wide .stat-value {
    font-size: 2.2rem;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #5865F2;
    margin-bottom: 5px;
}

.stat-label {
    color: #a1a1aa;
    font-size: 0.9rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(24, 24, 27, 0.8);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(88, 101, 242, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.2);
}

.stat-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.stat-card-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5865F2;
    margin-bottom: 10px;
}

.stat-card-description {
    color: #a1a1aa;
    font-size: 0.9rem;
}

/* Logout Button */
.logout-btn {
    padding: 12px 20px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}

/* Loading Animation */
.loading {
    display: none;
    text-align: center;
    padding: 40px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(88, 101, 242, 0.3);
    border-top: 4px solid #5865F2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .header-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .admin-btn, .logout-btn {
        width: 100%;
        justify-content: center;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .profile-stats {
        justify-content: center;
    }
}

.lounge-profile {
    max-width: 420px;
    margin: 40px auto;
    background: #23272a;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    padding: 32px 28px 24px 28px;
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    position: relative;
    animation: fadeIn 0.7s cubic-bezier(.4,0,.2,1);
}
.profile-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}
.profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid #5865F2;
    background: #23272a;
}
.profile-info h2 {
    font-size: 1.5em;
    margin: 0 0 4px 0;
    font-weight: 700;
    color: #fff;
}
.profile-badges {
    margin-top: 4px;
}
.profile-stats {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    justify-content: space-between;
}
.stat {
    background: #2c2f33;
    border-radius: 10px;
    padding: 14px 18px;
    min-width: 90px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(88,101,242,0.08);
}
.stat-label {
    font-size: 0.92em;
    color: #a1a1aa;
    display: block;
    margin-bottom: 4px;
}
.stat-value {
    font-size: 1.25em;
    font-weight: 600;
    color: #fff;
}
.stat-desc {
    font-size: 0.8em;
    color: #bdbdbd;
    margin-top: 2px;
}
.lounge-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 18px;
}
.lounge-btn {
    background: linear-gradient(90deg, #5865F2 0%, #4752C4 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 22px;
    font-size: 1.08em;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(88,101,242,0.13);
    cursor: pointer;
    outline: none;
}
.lounge-btn:hover:not(.disabled) {
    background: linear-gradient(90deg, #4752C4 0%, #5865F2 100%);
    color: #e0e7ff;
}
.lounge-btn.disabled {
    background: #444857;
    color: #a1a1aa;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.7;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Top Buttons */
.lounge-top-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 60px 0 40px 0;
    padding: 20px;
    background: rgba(24, 24, 27, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(88, 101, 242, 0.2);
}

.top-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3);
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.top-btn::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.5s;
}

.top-btn:hover:not(.disabled)::before {
    left: 100%;
}

.top-btn:hover:not(.disabled) {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
    background: linear-gradient(135deg, #4752C4 0%, #5865F2 100%);
}

.top-btn.disabled {
    background: linear-gradient(135deg, #444857 0%, #2c2f33 100%);
    color: #a1a1aa;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.7;
}

.top-btn i {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.top-btn span {
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive для кнопок */
@media (max-width: 768px) {
    .lounge-top-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .top-btn {
        min-width: auto;
        flex-direction: row;
        justify-content: center;
        padding: 16px 20px;
    }
    
    .top-btn i {
        margin-bottom: 0;
        margin-right: 8px;
    }
}

/* Mini Games Section */
.mini-games-section {
    display: none;
    background: rgba(24, 24, 27, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(88, 101, 242, 0.2);
    padding: 40px;
    margin-bottom: 40px;
}

.games-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3);
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
}

.back-btn i {
    font-size: 1.3rem;
}

.games-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.game-card {
    background: rgba(24, 24, 27, 0.8);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(88, 101, 242, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    width: calc(50% - 15px);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.2);
}

.game-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.game-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.game-info {
    flex: 1;
}

.game-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.game-info p {
    color: #a1a1aa;
    font-size: 0.9rem;
}

.game-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.game-section {
    display: none;
    background: rgba(24, 24, 27, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(88, 101, 242, 0.2);
    padding: 40px;
    margin-bottom: 40px;
}

.roulette-container {
    position: relative;
    width: 200px;
    height: 400px;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid #5865F2;
    border-radius: 20px;
    background: #1a1a2e;
}

.roulette-wheel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(0px);
    transition: transform 5s ease-out;
}

.roulette-item {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 0 10px;
}

.roulette-item:nth-child(even) {
    background: linear-gradient(45deg, #4752C4, #5865F2);
}

.roulette-pointer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #fff;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.game-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.play-btn {
    padding: 12px 20px;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3);
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
}

.game-stats {
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-stats span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.game-result {
    display: none;
    margin-top: 20px;
    text-align: center;
}

.result-content {
    background: rgba(24, 24, 27, 0.8);
    border-radius: 12px;
    padding: 20px;
    max-width: 300px;
    margin: 0 auto;
}

.result-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.result-content p {
    font-size: 1rem;
    color: #a1a1aa;
}

.close-result-btn {
    padding: 12px 20px;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3);
}

.close-result-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
}

/* Модальное окно */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(24, 24, 27, 0.95);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(88, 101, 242, 0.3);
    backdrop-filter: blur(20px);
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    color: white;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.modal-text {
    font-size: 1.1rem;
    color: #a1a1aa;
    margin-bottom: 30px;
}

.modal-btn {
    padding: 12px 30px;
    background: linear-gradient(45deg, #5865F2, #7289DA);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
}

.game-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.game-disabled .play-btn {
    background: #444857;
    cursor: not-allowed;
}

.cooldown-text {
    color: #a1a1aa;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Minesweeper Game Styles */
.minesweeper-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.game-info-panel {
    display: flex;
    gap: 30px;
    background: rgba(24, 24, 27, 0.8);
    border-radius: 12px;
    padding: 15px 25px;
    border: 1px solid rgba(88, 101, 242, 0.2);
    backdrop-filter: blur(20px);
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.info-label {
    color: #a1a1aa;
    font-size: 0.8rem;
}

.info-value {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.minesweeper-board {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2px;
    background: #2c2f33;
    padding: 10px;
    border-radius: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.minesweeper-cell {
    width: 45px;
    height: 45px;
    background: #40444b;
    border: 2px solid #5865F2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.minesweeper-cell:hover {
    background: #5865F2;
    transform: scale(1.05);
}

.minesweeper-cell.player {
    background: #57f287;
    border-color: #57f287;
    color: #2c2f33;
}

.minesweeper-cell.finish {
    background: #faa61a;
    border-color: #faa61a;
    color: #2c2f33;
}

.minesweeper-cell.bomb {
    background: #ed4245;
    border-color: #ed4245;
    color: white;
}

.minesweeper-cell.revealed {
    background: #36393f;
    border-color: #72767d;
}

.minesweeper-cell.flagged {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.minesweeper-cell.safe {
    background: rgba(34, 197, 94, 0.2);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.minesweeper-cell i {
    font-size: 1.2rem;
}

/* Responsive для сапера */
@media (max-width: 768px) {
    .minesweeper-board {
        grid-template-columns: repeat(8, 1fr);
        gap: 1px;
        padding: 10px;
    }
    
    .minesweeper-cell {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .game-info-panel {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
}

/* Arrow Controls */
.arrow-controls {
    display: grid;
    grid-template-areas: 
        ". up ."
        "left . right"
        ". down .";
    gap: 10px;
    margin: 20px auto;
    max-width: 200px;
}

.arrow-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #5865F2, #4752c4);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
    background: linear-gradient(145deg, #4752c4, #5865F2);
}

.arrow-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(88, 101, 242, 0.3);
}

.arrow-btn:disabled {
    background: #72767d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.arrow-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

#upBtn { grid-area: up; }
#downBtn { grid-area: down; }
#leftBtn { grid-area: left; }
#rightBtn { grid-area: right; }

/* Стили для кнопок игры */
.game-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.game-buttons button {
    padding: 12px 24px;
    background: linear-gradient(145deg, #5865F2, #4752c4);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
    background: linear-gradient(145deg, #4752c4, #5865F2);
}

.game-buttons button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(88, 101, 242, 0.3);
}

.game-buttons button:disabled {
    background: #72767d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Стили для заголовка игры */
.game-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(145deg, #2c2f33, #23272a);
    border-radius: 15px;
    border: 2px solid #5865F2;
}

.game-header h3 {
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.game-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.game-info span {
    background: rgba(88, 101, 242, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    border: 1px solid #5865F2;
}

/* Стили для контейнера игры */
.game-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 20px 0;
    padding: 20px;
    background: rgba(44, 47, 51, 0.5);
    border-radius: 15px;
    border: 1px solid #5865F2;
}

/* Анимации */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.minesweeper-cell.player {
    animation: pulse 2s infinite;
}

/* Адаптивность */
@media (max-width: 768px) {
    .minesweeper-board {
        max-width: 350px;
        gap: 1px;
        padding: 8px;
    }
    
    .minesweeper-cell {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .arrow-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .game-info {
        gap: 15px;
    }
    
    .game-info span {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

.overlay-content #overlayTime {
    color: #5865F2;
    font-weight: bold;
}

/* Убираем мини-блок у цифр в сапёре */
#minesweeperGame .game-info span {
    background: rgba(88, 101, 242, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    border: 1px solid #5865F2;
}

/* Убираем выделение только для цифр внутри span */
#minesweeperGame .game-info span span {
    background: none;
    border: none;
    padding: 0;
    color: #fff;
    font-weight: 600;
}

.auth-timer {
  margin-bottom: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2em;
  background: linear-gradient(90deg, #232a4d 0%, #3b3f5c 100%);
  border-radius: 1.2em;
  box-shadow: 0 4px 24px #3b82f655, 0 1.5px 8px #0003;
  padding: 1.2em 2.2em 1.2em 1.2em;
  border: 1.5px solid #5865f2;
  min-width: 320px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.auth-timer .timer-icon {
  background: linear-gradient(135deg, #5865f2 60%, #3b82f6 100%);
  color: #fff;
  border-radius: 50%;
  width: 3.2em;
  height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  box-shadow: 0 2px 8px #5865f155, 0 0 16px #5865f299;
  flex-shrink: 0;
}
.auth-timer .timer-content {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.auth-timer .timer-label {
  font-size: 1.08em;
  color: #b6c6f7;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.auth-timer .timer-countdown {
  font-size: 2.2em;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(90deg, #5865f2 0%, #3b82f6 100%);
  border-radius: 0.6em;
  padding: 0.18em 0.8em;
  box-shadow: 0 1px 8px #5865f155, 0 0 16px #5865f299;
  display: inline-block;
  min-width: 220px;
  text-align: center;
  transition: color 0.2s, background 0.2s;
  text-shadow: 0 2px 8px #232a4d99, 0 0 8px #5865f2cc;
}
@media (max-width: 600px) {
  .auth-timer {
    padding: 0.7em 0.7em 0.7em 0.7em;
    min-width: 0;
    max-width: 98vw;
  }
  .auth-timer .timer-countdown {
    font-size: 1.2em;
    min-width: 120px;
  }
  .auth-timer .timer-icon {
    width: 2.1em;
    height: 2.1em;
    font-size: 1.2em;
  }
}

/* === СЕЗОННЫЙ ПРОПУСК === */
.season-pass-section {
    max-width: 1400px;
    margin: 48px auto 48px auto;
    border-radius: 32px;
    box-shadow: 0 8px 64px #000a, 0 2px 24px #ff86de33;
    background: linear-gradient(120deg, #18181b 0%, #1a093b 100%);
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 480px;
}
.bp-content {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 32px;
    background: transparent;
    padding: 48px 32px 32px 32px;
    box-shadow: none;
    position: relative;
}
.bp-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.bp-title {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    letter-spacing: 0.08em;
    color: #ff86de;
    text-shadow: 0 2px 16px #ff86de55, 0 1.5px 8px #0003;
    transform: skew(-12deg);
    margin-bottom: 0.5em;
    line-height: 1.1;
}
.bp-title-main {
    background: linear-gradient(90deg, #ff86de 0%, #06a6e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.bp-timer {
    font-size: 1.1rem;
    color: #f87171;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.bp-progress-block {
    margin-bottom: 18px;
}
.bp-progress-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.bp-level-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}
.bp-xp-label {
    font-size: 1.1rem;
    color: #bbf7d0;
    font-weight: 600;
}
.bp-progress-bar-bg {
    background: #48444f !important;
    border-radius: 10px;
    height: 14px;
    box-shadow: 0 2px 8px #ff86de33;
}
.bp-progress-bar {
    background: linear-gradient(90deg, #ff86de 0%, #06a6e8 100%);
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(.4,2,.6,1);
    box-shadow: 0 2px 8px #ff86de55;
}
.bp-main-row {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}
.bp-left {
    min-width: 320px;
    max-width: 380px;
    background: rgba(24,24,27,0.92);
    border-radius: 22px;
    box-shadow: 0 4px 32px #0005;
    padding: 32px 24px 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}
.bp-user-block {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}
.bp-user-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid #facc15;
    box-shadow: 0 2px 12px #facc1533;
    background: #23272a;
}
.bp-user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bp-user-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}
.bp-user-type {
    font-size: 1rem;
    color: #facc15;
    font-weight: 600;
    letter-spacing: 0.03em;
    background: rgba(250,204,21,0.08);
    border-radius: 6px;
    padding: 2px 10px;
    display: inline-block;
    margin-top: 2px;
}
.bp-missions-block {
    width: 100%;
}
.bp-missions-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f87171;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.bp-missions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bp-mission {
    background: rgba(34,197,94,0.10);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px #22c55e22;
    border-left: 4px solid #22c55e;
    position: relative;
}
.bp-mission .bp-mission-xp {
    margin-left: auto;
    color: #facc15;
    font-weight: 700;
    font-size: 1.1rem;
}
.bp-mission .bp-mission-progress {
    margin-left: 12px;
    color: #06a6e8;
    font-size: 0.98rem;
    font-weight: 600;
}
.bp-mission.locked {
    opacity: 0.5;
    filter: grayscale(0.7);
}
.bp-mission .bp-mission-lock {
    margin-left: 8px;
    color: #f87171;
    font-size: 1.2rem;
}
.bp-mission .bp-mission-choose-btn {
    margin-left: 16px;
    background: linear-gradient(90deg, #ff86de 0%, #06a6e8 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 18px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px #ff86de55;
}
.bp-mission .bp-mission-choose-btn:hover {
    background: linear-gradient(90deg, #06a6e8 0%, #ff86de 100%);
    box-shadow: 0 4px 16px #06a6e899;
}
.bp-premium-block {
    width: 100%;
    margin-top: 18px;
    text-align: center;
}
.bp-premium-btn {
    background: linear-gradient(90deg, #ff86de 0%, #06a6e8 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px #ff86de55;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.bp-premium-btn:hover {
    background: linear-gradient(90deg, #06a6e8 0%, #ff86de 100%);
    box-shadow: 0 4px 24px #06a6e899;
}
.bp-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
@keyframes bpCardFadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

/* Красивый контейнер Season Pass с неоновой рамкой */
.bp-levels-neon-bg {
    border-radius: 24px !important;
    overflow: hidden;
    padding: 50px 40px !important;
    margin: 0 auto 18px auto;
    background: rgba(31,28,40,0.95);
    border: 3px solid #06a6e8;
    position: relative;
    max-width: 1400px;
    min-height: 320px;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(6, 166, 232, 0.4), 0 0 60px rgba(248, 134, 222, 0.2);
}

/* Неоновый эффект через псевдоэлемент */
.bp-levels-neon-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(45deg, #ff86de, #06a6e8, #ff86de, #06a6e8);
    background-size: 200% 200%;
    animation: neonGlow 4s ease-in-out infinite;
    z-index: -1;
    filter: blur(3px);
    opacity: 0.8;
}

.bp-levels-neon-bg::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: rgba(31,28,40,0.95);
    border-radius: 21px;
    z-index: -1;
}

@keyframes neonGlow {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

.bp-levels-neon-bg:hover {
    transform: scale(1.01);
    box-shadow: 0 0 40px rgba(6, 166, 232, 0.6), 0 0 80px rgba(248, 134, 222, 0.3);
}

/* Контейнер с кнопками прокрутки */
.bp-levels-outer {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Уменьшенные кнопки прокрутки у краев контейнера */
.bp-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    height: 50px !important;
    width: 50px !important;
    border-radius: 50%;
    border: 3px solid #ff86de !important;
    background: rgba(0, 0, 0, 0.9) !important;
    color: #ff86de !important;
    font-size: 1.4rem !important;
    box-shadow: 0 0 20px rgba(248, 134, 222, 0.6), 0 4px 16px rgba(0,0,0,0.6) !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px);
}

.bp-scroll-btn.left {
    left: 15px !important;
}

.bp-scroll-btn.right {
    right: 15px !important;
}

.bp-scroll-btn:hover {
    background: #ff86de !important;
    color: #000 !important;
    transform: translateY(-50%) scale(1.15) !important;
    box-shadow: 0 0 30px rgba(248, 134, 222, 0.8), 0 6px 20px rgba(0,0,0,0.8) !important;
    border-color: #06a6e8 !important;
}

.bp-scroll-btn:active {
    transform: translateY(-50%) scale(1.05) !important;
}

/* Контейнер уровней с градиентным затемнением */
.bp-levels-viewport {
    width: 1000px;
    height: 240px;
    overflow: visible;
    position: relative;
    mask: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,1) 40px,
        rgba(0,0,0,1) calc(100% - 40px),
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,1) 40px,
        rgba(0,0,0,1) calc(100% - 40px),
        transparent 100%
    );
}

/* Градиентное затемнение по краям */
.bp-levels-viewport::before {
    display: none;
}

.bp-levels-viewport::after {
    display: none;
}

/* Внутренний скроллящийся контейнер */
.bp-levels-row {
    display: flex !important;
    gap: 30px !important;
    padding: 20px 0 20px 20px !important;
    margin: 0 !important;
    height: 240px !important;
    width: 1000px !important;
    align-items: flex-start !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.bp-levels-row::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Улучшенные карточки уровней */
.bp-level-card {
    flex: 0 0 200px !important;
    width: 200px !important;
    height: 200px !important;
    padding: 16px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, #23243b 60%, #18181b 100%) !important;
    box-shadow: 0 8px 32px rgba(6, 166, 232, 0.15), 0 4px 16px rgba(248, 134, 222, 0.1) !important;
    border: 2px solid rgba(6, 166, 232, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(12px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    animation: bpCardFadeIn 0.7s cubic-bezier(.4,2,.6,1) !important;
    margin: 0 !important;
    overflow: hidden;
}

.bp-level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff86de, #06a6e8);
    z-index: 1;
}

.bp-level-card:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 16px 48px rgba(6, 166, 232, 0.25), 0 8px 24px rgba(248, 134, 222, 0.2) !important;
    border-color: #06a6e8 !important;
}

.bp-level-card.current {
    border: 2px solid #06a6e8 !important;
    box-shadow: 0 0 25px rgba(6, 166, 232, 0.5), 0 8px 32px rgba(0,0,0,0.3) !important;
    transform: scale(1.05) !important;
    z-index: 3;
    background: linear-gradient(135deg, #2a3b5c 60%, #1e2a3f 100%) !important;
}

.bp-level-card.current::before {
    background: linear-gradient(90deg, #06a6e8, #0891b2);
}

.bp-level-card.claimed {
    border: 2px solid #22c55e !important;
    background: linear-gradient(135deg, #1f2937 60%, #111827 100%) !important;
    opacity: 0.8;
}

.bp-level-card.claimed::before {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.bp-level-card.locked {
    opacity: 0.4 !important;
    filter: grayscale(0.8) !important;
    border-color: rgba(156, 163, 175, 0.3) !important;
}

.bp-level-card .bp-level-num {
    text-align: center !important;
    width: 100%;
    font-size: 1.1rem !important;
    color: #facc15 !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    letter-spacing: 0.04em !important;
    z-index: 2;
    position: relative;
}

.bp-level-card .bp-level-icon {
    font-size: 2.2rem !important;
    color: #facc15 !important;
    margin-bottom: 8px !important;
    filter: drop-shadow(0 2px 8px rgba(250, 204, 21, 0.3)) !important;
    z-index: 2;
    position: relative;
}

.bp-level-card .bp-level-reward {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 6px !important;
    text-align: center !important;
    line-height: 1.2 !important;
    z-index: 2;
    position: relative;
}

.bp-level-card .bp-level-xp {
    font-size: 0.85rem !important;
    color: #bbf7d0 !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    z-index: 2;
    position: relative;
}

.bp-level-card .bp-claim-btn {
    background: linear-gradient(90deg, #facc15 0%, #22c55e 100%) !important;
    color: #23272a !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 6px 14px !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    z-index: 2;
    position: relative;
}

.bp-level-card .bp-claim-btn:hover {
    background: linear-gradient(90deg, #22c55e 0%, #facc15 100%) !important;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4) !important;
    transform: translateY(-2px) !important;
}

.bp-level-card .bp-claimed {
    color: #22c55e !important;
    font-weight: 900 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.04em !important;
    text-shadow: 0 2px 8px rgba(34, 197, 94, 0.3) !important;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto !important;
}

.bp-level-card .bp-claimed::after {
    content: '✔' !important;
    color: #22c55e !important;
    font-size: 1rem !important;
}

.bp-level-card .bp-level-lock {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    color: #9ca3af !important;
    font-size: 1.2rem !important;
    z-index: 3 !important;
    opacity: 0.7;
}

/* Адаптивность для карточек */
@media (max-width: 1200px) {
    .bp-levels-neon-bg { padding: 50px 30px !important; max-width: 1200px; }
    .bp-levels-viewport { width: 900px !important; }
    .bp-levels-outer { max-width: 1000px !important; }
    .bp-scroll-btn.left { left: 12px !important; }
    .bp-scroll-btn.right { right: 12px !important; }
    .bp-scroll-btn { 
        height: 45px !important; 
        width: 45px !important; 
        font-size: 1.3rem !important; 
    }
    .bp-level-card {
        width: 180px !important;
        height: 180px !important;
    }
}

@media (max-width: 900px) {
    .bp-levels-neon-bg { padding: 40px 25px !important; max-width: 1000px; }
    .bp-levels-viewport { width: 700px !important; }
    .bp-levels-outer { max-width: 800px !important; }
    .bp-scroll-btn.left { left: 10px !important; }
    .bp-scroll-btn.right { right: 10px !important; }
    .bp-scroll-btn { 
        height: 40px !important; 
        width: 40px !important; 
        font-size: 1.2rem !important; 
    }
    .bp-level-card {
        width: 160px !important;
        height: 160px !important;
        padding: 12px !important;
    }
    .bp-level-card .bp-level-icon {
        font-size: 1.8rem !important;
    }
    .bp-level-card .bp-level-reward {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 600px) {
    .bp-levels-neon-bg { padding: 30px 20px !important; max-width: 600px; }
    .bp-levels-viewport { width: 500px !important; }
    .bp-levels-outer { max-width: 600px !important; }
    .bp-scroll-btn.left { left: 8px !important; }
    .bp-scroll-btn.right { right: 8px !important; }
    .bp-scroll-btn { 
        height: 35px !important; 
        width: 35px !important; 
        font-size: 1.1rem !important; 
    }
    .bp-level-card { 
        width: 140px !important; 
        height: 140px !important;
        padding: 10px !important;
    }
    .bp-levels-row { gap: 16px !important; padding: 20px 0 20px 15px !important; }
    .bp-level-card .bp-level-icon {
        font-size: 1.6rem !important;
        margin-bottom: 6px !important;
    }
    .bp-level-card .bp-level-reward {
        font-size: 0.8rem !important;
        margin-bottom: 4px !important;
    }
    .bp-level-card .bp-level-xp {
        font-size: 0.75rem !important;
        margin-bottom: 6px !important;
    }
    .bp-level-card .bp-claim-btn {
        padding: 4px 10px !important;
        font-size: 0.8rem !important;
    }
}