* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            margin: 0;
            padding: 0;
            min-height: 100vh;
            color: #fff;
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
			background: url('/assets/images/bg-main.jpg') no-repeat center center;  
            background-size: cover;
            filter: blur(8px);
            z-index: -2;
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }
        
        .header {
            background-color: #000;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #ff9900;
        }
        
        .logo {
            height: 40px;
        }
        
        .main-container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            display: flex;
            gap: 20px;
        }
        
        .sidebar {
            width: 350px;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #ff9900;
        }
        
        .game-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            border: 2px solid #ff9900;
            border-radius: 8px;
        }
        
        .info-text {
            font-size: 14px;
            line-height: 1.6;
            color: #ccc;
            margin-bottom: 20px;
        }
        
        .user-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #444;
        }
        
        .user-details {
            flex-grow: 1;
        }
        
        .username {
            font-weight: bold;
            color: #ff9900;
        }
        
        .account-level {
            font-size: 14px;
            color: #ccc;
        }
        
        .balance {
            font-size: 14px;
            color: #ccc;
        }
        
        .section-title {
            font-size: 18px;
            color: #ff9900;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #ff9900;
        }
        
        .packages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.package {
    background: rgba(30, 30, 40, 0.85);
    border-radius: 14px;
    padding: 18px 12px;
    width: 200px;
    text-align: center;
    transition: all 0.25s ease;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.package:hover {
    transform: translateY(-6px);
    border-color: #ff9900;
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.25);
}

.package.selected {
    border-color: #ff9900;
    background: rgba(40, 30, 20, 0.92);
    box-shadow: 0 0 0 2px #ff9900, 0 6px 16px rgba(255, 153, 0, 0.3);
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff9900, #ff6600);
    color: #000;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
}

.package-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffcc66;
    margin: 10px 0 8px;
    min-height: 32px;
    line-height: 1.3;
}

.package-image {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
	background: url('/assets/images/new_libao1.png') no-repeat center center;
    background-size: contain;
}

.package-price {
    font-size: 19px;
    font-weight: 800;
    color: #ffd700;
    margin: 6px 0;
}

.original-price {
    font-size: 13px;
    color: #888;
    text-decoration: line-through;
    display: block;
    margin-top: 4px;
}

.package-bonus {
    font-size: 14px;
    font-weight: 700;
    color: #4dff4d;
    margin-top: 6px;
}
        
        .payment-methods {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .payment-method {
            background-color: #fff;
            padding: 15px;
            border-radius: 8px;
            width: 120px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.2s ease;
        }
        
        .payment-method:hover {
            border-color: #ff9900;
            transform: scale(1.05);
        }
        
        .payment-method.selected {
            border-color: #ff9900;
            background-color: rgba(255, 153, 0, 0.2);
        }
        
        .payment-logo {
            width: 80px;
            height: auto;
        }
        
        .total-section {
            background-color: rgba(0, 0, 0, 0.7);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .total-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .total-label {
            font-size: 16px;
        }
        
        .total-value {
            font-size: 20px;
            font-weight: bold;
            color: #ff9900;
        }
        
        .discount-tag {
            background-color: #ff9900;
            color: #000;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            margin-left: 10px;
        }
        
        .buy-button {
            width: 100%;
            padding: 15px;
            background-color: #ff9900;
            color: #000;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
        }
        
        .buy-button:hover {
            background-color: #ff8800;
            transform: scale(1.05);
        }
        
        .language-selector {
            padding: 5px 10px;
            border-radius: 4px;
            background-color: #333;
            color: #fff;
            border: 1px solid #666;
            cursor: pointer;
        }
        
        .mobile-note {
            background-color: #ff9900;
            color: #000;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            margin-left: 10px;
        }
        
        @media (max-width: 768px) {
            .main-container {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
            }
            
            .packages-container {
                flex-direction: column;
            }
            
            .package {
                width: 100%;
            }
        }
		
		
		
		
	.login-button {
		background-color: #ff9900;
		color: #000;
		border: none;
		padding: 8px 16px;
		border-radius: 6px;
		font-size: 14px;
		font-weight: bold;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	.login-button:hover {
		background-color: #ff8800;
		transform: scale(1.05);
	}
	
	
	.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: rgba(30, 30, 40, 0.95);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #ff9900;
    max-width: 400px;
    width: 90%;
    text-align: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(255, 153, 0, 0.3);
}

.modal-content h3 {
    color: #ff9900;
    margin-bottom: 15px;
    font-size: 20px;
}

.modal-content p {
    margin-bottom: 5px;
    font-size: 16px;
}

.modal-content small {
    display: block;
    color: #ccc;
    font-size: 12px;
    margin-bottom: 20px;
}

.modal-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

#player-id-input {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #666;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
}

#player-id-input:focus {
    outline: none;
    border-color: #ff9900;
}

.id-example-image-large {
    width: 100%;
    max-width: 350px;
    height: auto;
    border: 2px solid #ff9900;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.2);
}

.close-modal-btn {
    background: transparent;
    color: #ff9900;
    border: 1px solid #ff9900;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 10px;
    cursor: pointer;
}

.close-modal-btn:hover {
    background: rgba(255, 153, 0, 0.2);
}


.user-id-display {
    background: rgba(0, 0, 0, 0.6);
    color: #ffcc66;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #ff9900;
    min-width: 120px;
    text-align: center;
}

.user-id-with-logout {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logout-button {
    background: #ff9900; /* оранжевый фон — как у кнопки "Купить" */
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logout-button:hover {
    background: #ff8800;
    transform: scale(1.1);
}



.footer {
    text-align: center;
    padding: 20px;
    color: #aaa;
    font-size: 14px;
    border-top: 1px solid #444;
    margin-top: 40px;
}

.footer a {
    color: #ff9900;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.payment-label {
    font-size: 12px;
    color: #ccc;
    margin-top: 5px;
}
