:root {
    --main-red: #ff2d78;
    --main-red-glow: rgba(255, 45, 120, 0.5);
    --dark-bg: #050505;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow: 0 0 15px var(--main-red-glow);
    --premium-gradient: linear-gradient(135deg, rgba(255, 45, 120, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section with Video */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-controls {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    transition: 0.3s;
    opacity: 0.6;
}

.hero-video-controls:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

.hero-video-controls button {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-controls button:hover {
    color: var(--main-red);
    transform: scale(1.2);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: white;
    overflow-x: hidden;
}

/* Video Background */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 45, 120, 0.05) 0%, rgba(5,5,5,0.7) 100%);
    z-index: -1;
    pointer-events: none;
}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 150px rgba(0,0,0,0.9);
    z-index: -1;
    pointer-events: none;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 25px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 45, 120, 0.1);
    transition: 0.5s;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 23px;
    font-weight: bold;
    letter-spacing: 3px;
    text-shadow: var(--glow);
}

.logo span { color: var(--main-red); }

nav ul { display: flex; list-style: none; }
nav ul li { margin: 0 25px; }
nav ul li a { 
    text-decoration: none; 
    color: rgba(255,255,255,0.7); 
    transition: 0.3s; 
    font-weight: 500;
    letter-spacing: 1px;
}
nav ul li a:hover { color: var(--main-red); text-shadow: var(--glow); }

.btn-ucp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--main-red);
    padding: 10px 25px;
    border-radius: 30px;
    color: white !important;
    font-weight: bold;
    box-shadow: var(--glow);
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid transparent;
}

.btn-ucp.logged-in {
    background: rgba(255, 45, 120, 0.15);
    border: 1px solid var(--main-red);
    padding: 6px 20px;
}

.btn-ucp img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--main-red);
    box-shadow: 0 0 10px var(--main-red-glow);
    object-fit: cover;
}

.btn-ucp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--main-red-glow);
    background: var(--main-red);
    color: white !important;
}


.btn-launcher {
    border: 1px solid var(--main-red);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--main-red) !important;
    font-weight: bold;
    transition: 0.3s;
    margin-right: 15px;
}

.btn-launcher:hover {
    background: var(--main-red);
    color: white !important;
    box-shadow: var(--glow);
}

/* Download Section */
.download-container {
    margin-top: 40px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: rgba(255, 45, 120, 0.1);
    border: 2px solid var(--main-red);
    border-radius: 15px;
    color: white;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 0 20px rgba(255, 45, 120, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-download i {
    font-size: 24px;
    filter: drop-shadow(0 0 10px var(--main-red));
}

.btn-download:hover {
    background: var(--main-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 45, 120, 0.4);
    color: black;
}

.btn-download:hover i {
    filter: none;
}

/* Hero Content Overlay */
.hero-content {
    position: relative;
    z-index: 5;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 85px;
    margin-bottom: 15px;
    text-shadow: 0 0 30px var(--main-red);
    letter-spacing: 8px;
    animation: breathe 5s ease-in-out infinite;
    text-transform: uppercase;
}

@keyframes breathe {
    0%, 100% { 
        transform: scale(1); 
        text-shadow: 0 0 20px var(--main-red);
        letter-spacing: 8px;
    }
    50% { 
        transform: scale(1.05); 
        text-shadow: 0 0 50px var(--main-red), 0 0 80px var(--main-red);
        letter-spacing: 12px;
    }
}

.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

.server-status {
    background: var(--glass);
    padding: 20px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 45, 120, 0.3);
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(5px);
}

#ip-address { font-weight: bold; margin-right: 20px; font-family: 'Orbitron', sans-serif; color: var(--main-red); }

.copy-btn {
    background: var(--main-red);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.copy-btn:hover {
    background: white;
    color: var(--main-red);
}

.online-count {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
}

.online-count span { color: var(--main-red); font-weight: bold; }

/* Features */
.features {
    display: flex;
    justify-content: center;
    padding: 150px 20px;
    gap: 40px;
    flex-wrap: wrap;
    background: linear-gradient(to bottom, transparent, #050505);
}

.card {
    background: var(--glass);
    padding: 50px 40px;
    width: 350px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-20px);
    border-color: var(--main-red);
    box-shadow: 0 10px 40px rgba(255, 45, 120, 0.1);
}

.card .icon { 
    font-size: 50px; 
    margin-bottom: 25px; 
    display: inline-block;
    filter: drop-shadow(0 0 10px var(--main-red));
}

.card h3 { margin-bottom: 15px; font-family: 'Orbitron', sans-serif; letter-spacing: 1px; }

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

.preloader-content {
    text-align: center;
    width: 300px;
}

.preloader-content .logo {
    font-size: 35px;
    margin-bottom: 10px;
}

.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

#progress-bar {
    width: 0%;
    height: 100%;
    background: var(--main-red);
    box-shadow: 0 0 15px var(--main-red);
    transition: width 0.4s ease;
}

#loader-status {
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

/* Download & Info Section */
.download-info-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 45, 120, 0.03), transparent);
}

.info-frame {
    width: 100%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 45, 120, 0.2);
    border-radius: 40px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.info-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 45, 120, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.info-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 35px;
    margin-bottom: 20px;
    color: white;
    text-shadow: var(--glow);
}

.info-content p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.stat-item:hover {
    background: rgba(255, 45, 120, 0.1);
    border-color: rgba(255, 45, 120, 0.3);
    transform: translateX(10px);
}

.stat-item i {
    font-size: 20px;
    color: var(--main-red);
    width: 30px;
    text-align: center;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: white;
    font-weight: 500;
}

.stat-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    color: var(--main-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.download-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-download-big {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(45deg, var(--main-red), #ff7ebb);
    padding: 25px 40px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 45, 120, 0.3);
}

.btn-download-big i {
    font-size: 30px;
}

.btn-text span {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.btn-text small {
    font-size: 11px;
    opacity: 0.8;
}

.btn-download-big:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 45, 120, 0.5);
    background: white;
    color: var(--main-red);
}

@media (max-width: 900px) {
    .info-frame {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }
    .info-stats {
        justify-content: center;
    }
}

footer {
    text-align: center;
    padding: 80px 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.3);
    border-top: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(to top, rgba(255, 45, 120, 0.05), transparent);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    animation: float 4s ease-in-out infinite;
}

.social-icon.discord { animation-delay: 0s; }
.social-icon.youtube { animation-delay: 2s; }

.social-icon:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: var(--main-red);
    color: var(--main-red);
    box-shadow: 0 0 30px rgba(255, 45, 120, 0.3);
    background: rgba(255, 45, 120, 0.1);
}

.social-icon i {
    transition: 0.4s;
}

.social-icon:hover i {
    transform: rotate(360deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Auth Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 45, 120, 0.2);
    width: 100%;
    max-width: 450px;
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 50px rgba(255, 45, 120, 0.1);
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
}

/* Premium Frame Utility */
.premium-frame {
    background: var(--premium-gradient);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.premium-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.5s;
}

.premium-frame:hover::before {
    left: 100%;
}

/* Welcome Card Overlay */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
}

.welcome-card {
    text-align: center;
    padding: 60px;
    max-width: 500px;
    width: 90%;
    animation: welcomePop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes welcomePop {
    0% { transform: scale(0.5) rotate(-5deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.welcome-card .avatar-main {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--main-red);
    margin: 0 auto 30px;
    box-shadow: 0 0 30px var(--main-red-glow);
    padding: 5px;
    background: var(--dark-bg);
}

.welcome-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, var(--main-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    margin-bottom: 30px;
}

.welcome-card .btn-continue {
    background: var(--main-red);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px var(--main-red-glow);
}

.welcome-card .btn-continue:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px var(--main-red-glow);
}

/* Modal Content Updates */
.modal-content {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 100px rgba(0, 0, 0, 1), inset 0 0 20px rgba(255, 45, 120, 0.05);
}


.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 30px;
    color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--main-red);
}

.auth-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.4);
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.tab-btn.active {
    color: var(--main-red);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--main-red);
    box-shadow: var(--glow);
}

.auth-form {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.auth-form.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 14px;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 15px 15px 55px;
    border-radius: 15px;
    color: white;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: var(--main-red);
    background: rgba(255, 45, 120, 0.05);
    outline: none;
    box-shadow: 0 0 15px rgba(255, 45, 120, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.auth-submit {
    background: var(--main-red);
    border: none;
    padding: 18px;
    border-radius: 15px;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s;
    margin-top: 10px;
}

.auth-submit:hover {
    background: white;
    color: var(--main-red);
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.forgot-pass {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: 0.3s;
}

/* Notification Modal Enhancement */
.notification-modal-content {
    text-align: center;
    padding: 50px 40px;
}

.notification-modal-content i {
    font-size: 60px;
    color: var(--main-red);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px var(--main-red-glow));
}

.notification-modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.notification-modal-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.close-notification {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.3s;
}

.close-notification:hover {
    color: var(--main-red);
}


/* Ensure notifications are even higher than other modals */
#notificationModal, #confirmModal, #promptModal, #welcomeOverlay {
    z-index: 30000;
}


.profile-card {
    text-align: center;
}

.profile-header {
    margin-bottom: 30px;
}

.avatar-frame {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(45deg, var(--main-red), #ff7ebb);
    box-shadow: 0 0 20px rgba(255, 45, 120, 0.4);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.avatar-edit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    border-radius: 50%;
}

.avatar-frame:hover .avatar-edit-overlay {
    opacity: 1;
}

.avatar-edit-overlay i {
    color: white;
    font-size: 24px;
}

.avatar-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #1a1a1a;
}

.profile-header h2 {
    font-family: 'Orbitron', sans-serif;
    color: white;
    margin-bottom: 5px;
}

.profile-header p {
    color: var(--main-red);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

.info-value {
    color: white;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}

.game-link {
    background: var(--main-red);
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 13px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(255, 45, 120, 0.3);
}

.game-link:hover {
    background: white;
    color: var(--main-red);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.logout-btn {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 45, 120, 0.3);
    padding: 15px;
    border-radius: 15px;
    color: var(--main-red);
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.logout-btn:hover {
    background: var(--main-red);
    color: white;
    box-shadow: 0 0 20px rgba(255, 45, 120, 0.2);
}

/* Shop Section Styles */
.shop-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #050505, rgba(255, 45, 120, 0.02), #050505);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 40px;
    text-shadow: var(--glow);
    margin-bottom: 15px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-card {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.shop-card.premium {
    border-color: var(--main-red);
    background: rgba(255, 45, 120, 0.03);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 45, 120, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}

.shop-card:hover .card-glow {
    opacity: 1;
    transform: translate(25%, 25%);
}

.shop-card:hover {
    transform: translateY(-15px);
    border-color: var(--main-red);
    box-shadow: 0 10px 40px rgba(255, 45, 120, 0.1);
}

.item-icon {
    font-size: 50px;
    color: var(--main-red);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 45, 120, 0.3));
}

.shop-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.item-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.item-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-features i {
    color: var(--main-red);
    font-size: 12px;
}

.item-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: white;
    margin-bottom: 25px;
    font-weight: bold;
}

.btn-buy {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid var(--main-red);
    background: transparent;
    color: var(--main-red);
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-buy:hover {
    background: var(--main-red);
    color: white;
    box-shadow: var(--glow);
}

/* Donate Section Styles */
.donate-section {
    padding: 100px 20px;
    background: radial-gradient(circle at center, rgba(255, 45, 120, 0.05), transparent);
}

.donate-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.donate-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 40px;
    margin-bottom: 20px;
    text-shadow: var(--glow);
}

.donate-info p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    line-height: 1.8;
}

.rate-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rate-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}

.rate-item:hover {
    border-color: var(--main-red);
    background: rgba(255, 45, 120, 0.05);
}

.rate-item .gel {
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    color: white;
}

.rate-item i {
    color: var(--main-red);
    opacity: 0.5;
}

.rate-item .reward {
    font-family: 'Orbitron', sans-serif;
    color: var(--main-red);
    font-weight: bold;
}

.calculator-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 45, 120, 0.2);
    padding: 50px;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.calculator-card h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 30px;
    text-align: center;
}

.calc-input {
    margin-bottom: 30px;
}

.calc-input label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calc-input input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    outline: none;
    transition: 0.3s;
}

.calc-input input:focus {
    border-color: var(--main-red);
    background: rgba(255, 45, 120, 0.05);
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.result-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.result-box small {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.result-box span {
    font-family: 'Orbitron', sans-serif;
    color: var(--main-red);
    font-weight: bold;
    font-size: 18px;
}

.btn-donate-submit {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    border: none;
    background: var(--main-red);
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: var(--glow);
}

.btn-donate-submit:hover {
    background: white;
    color: var(--main-red);
    transform: translateY(-5px);
}

@media (max-width: 900px) {
    .donate-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Contact Modal Styles */
.contact-modal-content {
    text-align: center;
    padding: 60px 40px;
    border: 2px solid var(--main-red);
    box-shadow: 0 0 40px rgba(255, 45, 120, 0.2);
}

.contact-modal-content i.fa-discord {
    font-size: 60px;
    color: #5865F2;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(88, 101, 242, 0.5));
}

.contact-modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.contact-modal-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 35px;
    font-size: 16px;
}

.btn-discord-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--main-red);
    color: white;
    padding: 15px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255, 45, 120, 0.3);
}

.btn-discord-contact:hover {
    transform: translateY(-5px);
    background: white;
    color: var(--main-red);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Notification Modal Styles */
.notification-modal-content {
    text-align: center;
    padding: 50px 40px;
    border: 2px solid var(--main-red);
    box-shadow: 0 0 40px rgba(255, 45, 120, 0.2);
}

.notification-modal-content i {
    font-size: 50px;
    color: var(--main-red);
    margin-bottom: 20px;
}

.notification-modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
}

.notification-modal-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.close-notification {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 25px;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.close-notification:hover {
    color: var(--main-red);
}

/* Game Selection Modal Styles */
.game-selection-card {
    max-width: 700px !important;
}

.game-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.game-choice-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    text-align: center;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.game-choice-btn:hover {
    background: rgba(255, 45, 120, 0.05);
    border-color: var(--main-red);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 45, 120, 0.1);
}

.game-choice-btn .game-icon {
    font-size: 60px;
    color: var(--main-red);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 45, 120, 0.3));
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
}

.game-choice-btn h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.game-choice-btn p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.close-game-selection {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 25px;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.close-game-selection:hover {
    color: var(--main-red);
}

.game-link-btn {
    background: transparent;
    border: 1px solid var(--main-red);
    color: var(--main-red);
    padding: 5px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.game-link-btn:hover {
    background: var(--main-red);
    color: white;
}

/* Admin Panel Styles */
.admin-panel-card {
    max-width: 800px !important;
    padding: 40px !important;
}

.admin-panel-trigger {
    width: 100%;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    border: none;
    padding: 15px;
    border-radius: 15px;
    color: black;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.admin-panel-trigger:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.close-admin {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 25px;
    color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: 0.3s;
}

.close-admin:hover {
    color: var(--main-red);
}

.admin-stats {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.admin-stat-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 1;
    text-align: center;
}

.admin-stat-item span {
    display: block;
    font-size: 24px;
    font-family: 'Orbitron', sans-serif;
    color: var(--main-red);
    font-weight: bold;
}

.admin-stat-item small {
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
}

.user-list-container {
    max-height: 400px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.user-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.user-table th {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
}

.user-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 14px;
}

.rank-badge {
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
}

.rank-badge.admin {
    background: rgba(255, 45, 120, 0.2);
    color: var(--main-red);
    border: 1px solid rgba(255, 45, 120, 0.3);
}

.rank-badge.moderator {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.admin-pass-text {
    font-family: monospace;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}


.admin-balance-text {
    color: #00ff88;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
}

.admin-actions-cell {
    display: flex;
    gap: 10px;
}

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 14px;
}

.action-btn.give-money {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.action-btn.give-money:hover {
    background: #00ff88;
    color: black;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.action-btn.toggle-admin {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    color: #5865f2;
}

.action-btn.toggle-admin:hover {
    background: #5865f2;
    color: white;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.3);
}

.action-btn.toggle-admin.active {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
}

.action-btn.toggle-admin.active:hover {
    background: #ffd700;
    color: black;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.action-btn.delete-user {
    background: rgba(255, 45, 120, 0.1);
    border: 1px solid rgba(255, 45, 120, 0.3);
    color: var(--main-red);
}

.action-btn.delete-user:hover {
    background: var(--main-red);
    color: white;
    box-shadow: 0 0 15px rgba(255, 45, 120, 0.3);
}

.user-list-container::-webkit-scrollbar {
    width: 6px;
}
.user-list-container::-webkit-scrollbar-track {
    background: transparent;
}
.user-list-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

