/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 212, 255, 0.8) rgba(0, 0, 0, 0.2);
}

html {
    background-color: #0a0e1a;
    height: 100%;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0e1a;
    background-image: url('/city-background-shaheen.png');
    background-size: 120%;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: #fff;
    position: relative;
    overflow-x: hidden;
    animation: backgroundMove 30s ease-in-out infinite alternate;
    transition: background-color 0.3s ease, background-image 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes backgroundMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
    transition: opacity 0.3s ease;
}

body::after {
    content: '';
    position: fixed;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    background-image: url('/city-background-shaheen.png');
    z-index: -9999;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
}

body > *:not(.footer) {
    flex: 1 0 auto;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: 5px 0;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        rgba(0, 212, 255, 0.8) 0%, 
        rgba(0, 153, 204, 0.8) 50%,
        rgba(0, 212, 255, 0.8) 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 0 10px rgba(0, 212, 255, 0.6),
        inset 0 0 5px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        rgba(0, 212, 255, 1) 0%, 
        rgba(0, 153, 204, 1) 50%,
        rgba(0, 212, 255, 1) 100%);
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.9),
        0 0 30px rgba(0, 212, 255, 0.6),
        inset 0 0 8px rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.6);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-height: 80px;
    display: flex;
    align-items: center;
}

.header .container {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
    padding-right: 50px;
    padding-left: 50px;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    min-height: 50px;
}

.logo-section {
    display: flex !important;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
    margin-left: 0;
    margin-right: 0;
    flex-shrink: 0;
    min-width: 200px;
    visibility: visible !important;
    opacity: 1 !important;
}

.logo-section:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    display: block;
    flex-shrink: 0;
}

.logo-section:hover .logo-img {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.7);
    border-color: rgba(0, 212, 255, 0.8);
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8),
                 0 0 40px rgba(0, 212, 255, 0.6);
    letter-spacing: 2px;
    white-space: nowrap;
    margin: 0;
    display: block;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu {
    display: flex !important;
    gap: 12px;
    align-items: center;
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
    overflow: visible;
    margin: 0 20px;
    padding: 0 15px;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: 0;
}

.nav-link {
    color: #e0f2fe;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    display: inline-block;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
}

.nav-link:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.nav-link.active {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.25);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5),
                inset 0 0 10px rgba(0, 212, 255, 0.2);
    border-bottom: 3px solid #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-overlay {
    display: none;
}

.header-right {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-right: 0;
    margin-left: 20px;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1001;
    min-width: fit-content;
}

.btn-login {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 153, 204, 0.2) 100%);
    border: 2px solid rgba(0, 212, 255, 0.6);
    color: #00d4ff;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1002;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-login:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(0, 153, 204, 0.3) 100%);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
}

.btn-login.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(0, 153, 204, 0.3) 100%);
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.user-profile-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-decoration: none;
    color: #fff;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1002;
    width: 48px;
    height: 48px;
    background: transparent;
}

.user-profile-link:hover {
    background: rgba(0, 212, 255, 0.15);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.user-profile-link.active {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.user-profile-link i {
    display: none;
}

.user-profile-link:hover i {
    display: none;
}

.user-avatar-small {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.6);
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.user-profile-link:hover .user-avatar-small {
    border-color: rgba(0, 212, 255, 1);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.7);
    transform: scale(1.08);
}

.user-name-small {
    display: none;
}

.user-profile-link:hover .user-name-small {
    display: none;
}

/* Tooltip for profile */
.user-profile-link::after {
    content: attr(title);
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10000;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.user-profile-link:hover::after {
    opacity: 1;
}

.notification-link {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1002;
}

.notification-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

.notification-link.active {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6),
                0 0 80px rgba(0, 212, 255, 0.4);
    animation: logoFloat 3s ease-in-out infinite;
    background: rgba(0, 26, 51, 0.5);
    padding: 5px;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.9),
                 0 0 60px rgba(0, 212, 255, 0.7),
                 0 0 90px rgba(0, 212, 255, 0.5);
    margin-bottom: 15px;
    letter-spacing: 3px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.9),
                     0 0 60px rgba(0, 212, 255, 0.7),
                     0 0 90px rgba(0, 212, 255, 0.5);
    }
    100% {
        text-shadow: 0 0 40px rgba(0, 212, 255, 1),
                     0 0 80px rgba(0, 212, 255, 0.8),
                     0 0 120px rgba(0, 212, 255, 0.6);
    }
}

.hero-subtitle {
    font-size: 24px;
    color: #7dd3fc;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(125, 211, 252, 0.6);
}

.fivem-text {
    color: #00d4ff;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.hero-description {
    background: rgba(0, 26, 51, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.hero-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0f2fe;
    text-align: right;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 15px 35px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(0, 153, 204, 0.3) 100%);
    border: 2px solid rgba(0, 212, 255, 0.6);
    color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(0, 153, 204, 0.4) 100%);
    border-color: rgba(0, 212, 255, 0.9);
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.7);
    transform: translateY(-3px);
}

.btn-discord {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.3) 0%, rgba(88, 101, 242, 0.2) 100%);
    border: 2px solid rgba(88, 101, 242, 0.6);
    color: #5865f2;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.4) 0%, rgba(88, 101, 242, 0.3) 100%);
    border-color: rgba(88, 101, 242, 0.9);
    box-shadow: 0 0 35px rgba(88, 101, 242, 0.7);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 20px;
}

.btn-secondary {
    background: rgba(100, 100, 100, 0.3);
    border: 2px solid rgba(100, 100, 100, 0.5);
    color: #b0b0b0;
}

.btn-secondary:hover {
    background: rgba(100, 100, 100, 0.5);
    border-color: rgba(100, 100, 100, 0.8);
    color: #fff;
}

.btn-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3) 0%, rgba(255, 152, 0, 0.3) 100%);
    border: 2px solid rgba(255, 193, 7, 0.6);
    color: #ffc107;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.btn-warning:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.4) 0%, rgba(255, 152, 0, 0.4) 100%);
    border-color: rgba(255, 193, 7, 0.9);
    box-shadow: 0 0 35px rgba(255, 193, 7, 0.7);
    transform: translateY(-3px);
    color: #ffd700;
}

.btn-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.3) 0%, rgba(200, 35, 51, 0.3) 100%);
    border: 2px solid rgba(220, 53, 69, 0.6);
    color: #dc3545;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.4);
}

.btn-danger:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.4) 0%, rgba(200, 35, 51, 0.4) 100%);
    border-color: rgba(220, 53, 69, 0.9);
    box-shadow: 0 0 35px rgba(220, 53, 69, 0.7);
    transform: translateY(-3px);
    color: #ff4757;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title::before {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 212, 255, 0.8), 
        transparent);
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: lineGlow 2s ease-in-out infinite;
}

.section-subtitle {
    font-size: 20px;
    color: #b0b0b0;
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(0, 26, 51, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    font-size: 36px;
    color: #00d4ff;
    position: relative;
    z-index: 1;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.3);
    animation: iconRing 2s ease-in-out infinite;
}

@keyframes iconRing {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.feature-description {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.6;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(0, 26, 51, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    font-size: 32px;
    color: #00d4ff;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #00d4ff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.stat-label {
    font-size: 18px;
    color: #b0b0b0;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us-section {
    padding: 80px 0;
}

.why-us-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-us-description {
    font-size: 18px;
    line-height: 1.8;
    color: #e0f2fe;
    text-align: right;
    margin-bottom: 40px;
}

.why-us-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.why-point {
    background: rgba(0, 26, 51, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.why-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    border-radius: 15px;
}

.why-point:hover::before {
    opacity: 1;
}

.why-point:hover {
    transform: translateX(-5px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.why-point i {
    font-size: 24px;
    color: #00d4ff;
    z-index: 1;
}

.why-point span {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    z-index: 1;
}

/* ============================================
   QUICK LINKS SECTION
   ============================================ */
.quick-links-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.quick-link-card {
    background: rgba(0, 26, 51, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    border-radius: 15px;
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-card:hover {
    transform: translateX(-5px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.quick-link-card i {
    font-size: 32px;
    color: #00d4ff;
    z-index: 1;
}

.quick-link-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1;
}

.quick-link-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.quick-link-desc {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.5;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.cta-description {
    font-size: 20px;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-description {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #00d4ff;
    padding-right: 5px;
}

.footer-discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.3), rgba(88, 101, 242, 0.2));
    border: 2px solid rgba(88, 101, 242, 0.6);
    color: #5865f2;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.3);
}

.footer-discord-btn:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.4), rgba(88, 101, 242, 0.3));
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.6);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 14px;
}

.footer-bottom a {
    color: #00d4ff;
    text-decoration: none;
}

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

/* ============================================
   APPLICATION PAGE STYLES
   ============================================ */
.application-section {
    padding: 120px 0 80px;
    min-height: calc(100vh - 300px);
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    box-sizing: border-box;
    overflow-x: hidden;
}

.application-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.application-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    display: block;
}

.application-type-switch {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.application-type-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 44px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    cursor: pointer;
    font-size: 21px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.application-type-tab i {
    font-size: 18px;
}

.application-type-tab.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(0, 120, 255, 0.9));
    color: #ffffff;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.9);
}

.application-type-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.9);
}

.application-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.application-title i {
    font-size: 42px;
    animation: logoGlow 3s ease-in-out infinite;
}

.application-subtitle {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.6;
    width: 100%;
    display: block;
}

.application-message {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    display: flex !important;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.application-message p {
    margin: 0;
    color: inherit;
}

.application-message.success {
    border-color: rgba(0, 255, 0, 0.5);
    color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
}

.application-message.error {
    border-color: rgba(255, 59, 48, 0.5);
    color: #ff3b30;
    background: rgba(255, 59, 48, 0.1);
}

.application-message.error a {
    color: #00d4ff;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.application-message.error a:hover {
    color: #00a8cc;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.user-info-box {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.user-info-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.user-info-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.user-info-details h3 {
    color: #00d4ff;
    font-size: 20px;
    margin: 0 0 8px 0;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.user-info-details p {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-info-note {
    color: #ffffff;
    font-size: 16px;
    margin: 4px 0 0;
    text-align: center;
    font-style: normal;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.application-form {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 30px;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.form-label i {
    font-size: 16px;
}

.required {
    color: #ff3b30;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: block;
    margin: 0;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(0, 0, 0, 0.7);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #666;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d4ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    padding-right: 15px;
    padding-left: 40px;
}

.form-select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: #00d4ff;
}

.form-checkbox label {
    color: #e0f2fe;
    font-size: 16px;
    line-height: 1.6;
    cursor: pointer;
}

.form-checkbox label a {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.form-checkbox label a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

#civilian-fields {
    display: block;
    width: 100%;
}

#admin-fields {
    display: none;
    width: 100%;
}

#admin-fields[style*="display: block"],
#admin-fields.show {
    display: block;
}

#civilian-fields[style*="display: none"],
#civilian-fields.hide {
    display: none;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* ============================================
   APPLICATION STATUS CARD STYLES
   ============================================ */
.application-status-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.status-card-header {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-card-header i {
    font-size: 28px;
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.status-card-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.status-card-body {
    padding: 30px;
}

.status-info-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    flex-wrap: wrap;
}

.status-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

.status-label {
    font-size: 16px;
    font-weight: 600;
    color: #b0b0b0;
}

.status-value {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.status-badge i {
    font-size: 16px;
}

.status-badge.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 2px solid rgba(255, 193, 7, 0.5);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.status-badge.approved {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 2px solid rgba(0, 255, 0, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.status-badge.rejected {
    background: rgba(255, 59, 48, 0.2);
    color: #ff3b30;
    border: 2px solid rgba(255, 59, 48, 0.5);
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.3);
}

.application-details {
    margin-top: 25px;
}

.application-details h3 {
    font-size: 22px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.detail-label {
    font-size: 14px;
    font-weight: 600;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-label i {
    font-size: 14px;
    color: #00d4ff;
}

.detail-value {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.type-badge.type-civilian {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
}

.type-badge.type-admin {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.4);
    color: #ff6b6b;
}

.detail-section {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.detail-section:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
}

.detail-section .detail-label {
    font-size: 16px;
    margin-bottom: 12px;
    color: #00d4ff;
}

.detail-text {
    font-size: 15px;
    color: #e0f2fe;
    line-height: 1.8;
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.status-message {
    margin-top: 30px;
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.status-message i {
    font-size: 24px;
    color: #00d4ff;
    flex-shrink: 0;
    margin-top: 2px;
}

.status-message p {
    margin: 0;
    font-size: 16px;
    color: #e0f2fe;
    line-height: 1.6;
}

.status-message.success {
    background: rgba(0, 255, 0, 0.1);
    border-color: rgba(0, 255, 0, 0.3);
}

.status-message.success i {
    color: #00ff00;
}

.status-message.error {
    background: rgba(255, 59, 48, 0.1);
    border-color: rgba(255, 59, 48, 0.3);
}

.status-message.error i {
    color: #ff3b30;
}

.cooldown-remaining {
    margin-top: 10px;
    font-size: 15px;
    color: #ffc107;
    font-weight: 600;
    padding: 10px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* ============================================
   STORE PAGE STYLES
   ============================================ */
.store-section {
    padding: 120px 0 80px;
}

.store-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(0, 212, 255, 0.15) 0%, transparent 55%),
                radial-gradient(circle at bottom, rgba(0, 153, 204, 0.1) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.store-card {
    position: relative;
}

.store-tag-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(0, 153, 204, 0.9));
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.5);
    z-index: 10;
}

.store-tag-badge i {
    font-size: 12px;
}

.store-price {
    font-size: 32px;
    font-weight: 900;
    color: #00d4ff;
    margin-top: 10px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.store-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.store-features li {
    padding: 10px 0;
    color: #e0f2fe;
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-features li i {
    color: #00d4ff;
    font-size: 14px;
}

.store-highlighted {
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

.store-cta {
    text-align: center;
    margin-top: 50px;
    font-size: 18px;
    color: #b0b0b0;
    font-style: italic;
}

/* ============================================
   ADMIN PAGE STYLES
   ============================================ */
.admin-section {
    padding: 120px 0 80px;
}

.admin-header {
    text-align: center;
    margin-bottom: 50px;
}

.admin-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.admin-subtitle {
    font-size: 20px;
    color: #b0b0b0;
}

.admin-quick-actions {
    margin-bottom: 50px;
}

.quick-actions-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.quick-action-card {
    background: rgba(0, 26, 51, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-action-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.quick-action-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    font-size: 28px;
    color: #00d4ff;
}

.quick-action-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.quick-action-desc {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.5;
}

.applications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.applications-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.6);
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 153, 204, 0.3));
    border-color: rgba(0, 212, 255, 0.8);
    color: #00d4ff;
}

.applications-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.application-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.application-card:hover {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.app-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.app-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-user-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #00d4ff;
}

.app-username {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.app-user-id {
    font-size: 14px;
    color: #b0b0b0;
}

.type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.type-badge.type-civilian {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
}

.type-badge.type-admin {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.4);
    color: #ff6b6b;
}

.app-status-badge {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.app-status-badge.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.5);
}

.app-status-badge.status-approved {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.5);
}

.app-status-badge.status-rejected {
    background: rgba(255, 59, 48, 0.2);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.5);
}

.app-card-body {
    margin-bottom: 20px;
}

.app-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.app-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.app-detail-label {
    font-size: 14px;
    color: #b0b0b0;
    font-weight: 600;
}

.app-detail-value {
    font-size: 16px;
    color: #fff;
}

.app-description {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.app-description p {
    color: #e0f2fe;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.app-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-action {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-approve {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 2px solid rgba(0, 255, 0, 0.5);
}

.btn-approve:hover {
    background: rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
}

.btn-reject {
    background: rgba(255, 59, 48, 0.2);
    color: #ff3b30;
    border: 2px solid rgba(255, 59, 48, 0.5);
}

.btn-reject:hover {
    background: rgba(255, 59, 48, 0.3);
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.4);
}

.btn-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 2px solid rgba(255, 193, 7, 0.5);
}

.btn-pending:hover {
    background: rgba(255, 193, 7, 0.3);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
}

.btn-view {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 2px solid rgba(0, 212, 255, 0.5);
}

.btn-view:hover {
    background: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.no-applications {
    text-align: center;
    padding: 60px 20px;
    color: #b0b0b0;
}

.no-applications i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* ============================================
   ADMIN MANAGEMENT PAGES STYLES
   ============================================ */
.admin-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.admin-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.admin-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.admin-card-title i {
    font-size: 22px;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.staff-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.staff-item {
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.staff-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.staff-item-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 212, 255, 0.4);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.staff-item-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-item-info {
    flex: 1;
    min-width: 0;
}

.staff-item-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.staff-item-username {
    font-size: 14px;
    color: #b0b0b0;
    margin: 0 0 8px 0;
}

.staff-item-position {
    font-size: 16px;
    color: #00d4ff;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.staff-item-role {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid;
}

.role-badge i {
    font-size: 12px;
}

.role-badge.role-full-admin {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    color: #ffd700;
}

.role-badge.role-hr-admin {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    color: #00d4ff;
}

.role-badge.role-hr {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.5);
    color: #ffc107;
}

.staff-item-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.staff-item-actions .btn {
    padding: 10px 18px;
    font-size: 14px;
    white-space: nowrap;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #b0b0b0;
}

.empty-state i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
    color: #00d4ff;
}

.empty-state p {
    font-size: 18px;
    margin: 0;
    color: #b0b0b0;
}

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

.feature-input-group .form-input {
    flex: 1;
}

.feature-input-group .btn-remove-feature {
    flex-shrink: 0;
    padding: 10px 15px;
}

.option-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.option-item .form-input {
    flex: 1;
}

.notification-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.notification-type-badge.info {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.4);
}

.notification-type-badge.success {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.4);
}

.notification-type-badge.warning {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.notification-type-badge.error {
    background: rgba(255, 59, 48, 0.2);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.4);
}

.notification-type-badge.announcement {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.4);
}

.btn-danger {
    background: rgba(255, 59, 48, 0.2);
    color: #ff3b30;
    border: 2px solid rgba(255, 59, 48, 0.5);
}

.btn-danger:hover {
    background: rgba(255, 59, 48, 0.3);
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.4);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #00d4ff;
    transform: rotate(90deg);
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-detail-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.modal-label {
    font-size: 14px;
    color: #b0b0b0;
    font-weight: 600;
}

.modal-value {
    font-size: 16px;
    color: #fff;
}

.modal-text {
    font-size: 16px;
    color: #e0f2fe;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PROFILE PAGE STYLES
   ============================================ */
.profile-section {
    padding: 120px 0 80px;
    min-height: calc(100vh - 300px);
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.profile-container {
    max-width: 900px;
    margin: 0 auto;
}

.profile-header {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.profile-avatar-container {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    object-fit: cover;
}

.profile-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 255, 0, 0.2);
    border: 2px solid rgba(0, 255, 0, 0.5);
    border-radius: 20px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #00ff00;
}

.profile-status i {
    font-size: 8px;
    color: #00ff00;
}

.profile-info {
    flex: 1;
    min-width: 200px;
}

.profile-name-header {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.profile-name {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(255, 59, 48, 0.3));
    border: 2px solid rgba(255, 107, 107, 0.6);
    color: #ff6b6b;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.4);
}

.admin-badge i {
    font-size: 16px;
}

.profile-username {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.profile-verified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00d4ff;
    font-size: 14px;
    font-weight: 600;
}

.profile-verified i {
    color: #00d4ff;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.profile-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.profile-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.2);
}

.profile-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.profile-card-title i {
    font-size: 22px;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.profile-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-size: 14px;
    color: #b0b0b0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-label i {
    font-size: 14px;
    color: #00d4ff;
}

.detail-value {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.email-item {
    position: relative;
}

.email-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.email-hidden {
    cursor: pointer;
    color: #00d4ff;
    transition: all 0.3s ease;
}

.email-hidden:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.email-visible {
    color: #fff;
}

.email-toggle-btn {
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 8px;
    padding: 6px 12px;
    color: #00d4ff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.email-toggle-btn:hover {
    background: rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 12px;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.profile-action-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 153, 204, 0.3));
    border-color: rgba(0, 212, 255, 0.7);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.profile-action-btn.admin-btn {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 59, 48, 0.2));
    border-color: rgba(255, 107, 107, 0.4);
    color: #ff6b6b;
}

.profile-action-btn.admin-btn:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(255, 59, 48, 0.3));
    border-color: rgba(255, 107, 107, 0.7);
    box-shadow: 0 0 25px rgba(255, 107, 107, 0.4);
}

.profile-action-btn.btn-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2), rgba(200, 35, 51, 0.2));
    border-color: rgba(220, 53, 69, 0.4);
    color: #dc3545;
}

.profile-action-btn.btn-danger:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.3), rgba(200, 35, 51, 0.3));
    border-color: rgba(220, 53, 69, 0.7);
    box-shadow: 0 0 25px rgba(220, 53, 69, 0.4);
}

/* ============================================
   RULES PAGE STYLES
   ============================================ */
.rules-section {
    padding: 120px 0 80px;
    min-height: calc(100vh - 300px);
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.rules-header {
    text-align: center;
    margin-bottom: 50px;
}

.rules-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.rules-title i {
    font-size: 42px;
    color: #00d4ff;
    animation: logoGlow 3s ease-in-out infinite;
}

.rules-subtitle {
    font-size: 20px;
    color: #b0b0b0;
    line-height: 1.6;
}

.rules-error {
    background: rgba(255, 59, 48, 0.1);
    border: 2px solid rgba(255, 59, 48, 0.5);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ff3b30;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rules-error i {
    font-size: 24px;
}

.rules-error p {
    margin: 0;
    font-size: 16px;
}

.rules-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rule-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rule-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.2);
}

.rule-card-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 26, 51, 0.3);
}

.rule-card-header:hover {
    background: rgba(0, 26, 51, 0.5);
}

.rule-title-section {
    flex: 1;
}

.rule-title-text {
    display: flex;
    align-items: center;
}

.rule-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.rule-toggle-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    color: #00d4ff;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.rule-card-header:hover .rule-toggle-icon {
    background: rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.6);
    transform: scale(1.1);
}

.rule-card-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rule-card-content[style*="display: block"] {
    padding: 25px 30px;
    max-height: 5000px;
}

.rule-text {
    font-size: 16px;
    line-height: 1.8;
    color: #e0f2fe;
    text-align: right;
}

.rule-text strong {
    color: #00d4ff;
    font-weight: 700;
}

.rule-text br {
    margin-bottom: 10px;
}

.rules-empty {
    text-align: center;
    padding: 60px 20px;
    color: #b0b0b0;
}

.rules-empty i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
    color: #00d4ff;
}

.rules-empty p {
    font-size: 18px;
    margin: 0;
}

/* ============================================
   STAFF PAGE STYLES
   ============================================ */
.staff-section {
    padding: 120px 0 80px;
    min-height: calc(100vh - 300px);
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.staff-header {
    text-align: center;
    margin-bottom: 50px;
}

.staff-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.staff-title i {
    font-size: 42px;
    color: #00d4ff;
    animation: logoGlow 3s ease-in-out infinite;
}

.staff-subtitle {
    font-size: 20px;
    color: #b0b0b0;
    line-height: 1.6;
}

.staff-category {
    margin-bottom: 50px;
}

.staff-category-title {
    font-size: 32px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.staff-category-title i {
    font-size: 28px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.staff-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.staff-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.staff-card:hover::before {
    opacity: 1;
}

.staff-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.staff-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.staff-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    object-fit: cover;
    transition: all 0.3s ease;
}

.staff-card:hover .staff-avatar img {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.7);
    border-color: rgba(0, 212, 255, 0.8);
    transform: scale(1.05);
}

.staff-info {
    position: relative;
    z-index: 1;
}

.staff-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.staff-position {
    font-size: 18px;
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.staff-username {
    font-size: 14px;
    color: #b0b0b0;
    margin: 0;
}

.staff-empty {
    text-align: center;
    padding: 60px 20px;
    color: #b0b0b0;
}

.staff-empty i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
    color: #00d4ff;
}

.staff-empty p {
    font-size: 18px;
    margin: 0;
}

/* ============================================
   CREATORS PAGE STYLES
   ============================================ */
.creator-links {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.creator-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 8px;
    color: #00d4ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.creator-link-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 153, 204, 0.3));
    border-color: rgba(0, 212, 255, 0.7);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.creator-link-btn i {
    font-size: 12px;
}

.staff-position i {
    margin-left: 8px;
    font-size: 16px;
}

/* ============================================
   REVIEWS PAGE STYLES
   ============================================ */
.content-section {
    padding: 120px 0 80px;
    min-height: calc(100vh - 300px);
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-title i {
    font-size: 42px;
    color: #00d4ff;
    animation: logoGlow 3s ease-in-out infinite;
}

.page-subtitle {
    font-size: 20px;
    color: #b0b0b0;
    line-height: 1.6;
    text-align: center;
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.reviews-stats .stat-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.reviews-stats .stat-card:hover {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.reviews-stats .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    font-size: 28px;
    color: #00d4ff;
}

.reviews-stats .stat-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviews-stats .stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.reviews-stats .stat-label {
    font-size: 16px;
    color: #b0b0b0;
}

.alert {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.alert p {
    margin: 0;
    color: inherit;
}

.alert-error {
    border-color: rgba(255, 59, 48, 0.5);
    color: #ff3b30;
    background: rgba(255, 59, 48, 0.1);
}

.review-form-container {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.rating-input input[type="radio"] {
    display: none;
}

.star-label {
    font-size: 32px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-label:hover,
.star-label:hover ~ .star-label {
    color: #ffc107;
}

.rating-input input[type="radio"]:checked ~ .star-label,
.rating-input input[type="radio"]:checked + .star-label {
    color: #ffc107;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

.review-card.featured {
    border-color: rgba(255, 193, 7, 0.6);
    background: rgba(255, 193, 7, 0.05);
}

.review-card.featured:hover {
    border-color: rgba(255, 193, 7, 0.9);
    box-shadow: 0 5px 25px rgba(255, 193, 7, 0.3);
}

.review-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(255, 152, 0, 0.9));
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
    z-index: 10;
}

.review-badge i {
    font-size: 12px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    object-fit: cover;
}

.review-user-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-username {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.review-date {
    font-size: 14px;
    color: #b0b0b0;
}

.review-rating {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

.review-rating i {
    font-size: 20px;
    color: #666;
    transition: all 0.2s ease;
}

.review-rating i.active {
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
}

.review-title {
    font-size: 22px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.review-comment {
    font-size: 16px;
    line-height: 1.8;
    color: #e0f2fe;
    margin: 0;
    text-align: right;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #b0b0b0;
}

.empty-state i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
    color: #00d4ff;
}

.empty-state h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 18px;
    margin: 0;
}

/* ============================================
   POLLS PAGE STYLES
   ============================================ */
.polls-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.poll-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
}

.poll-card:hover {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

.poll-header {
    margin-bottom: 25px;
}

.poll-question {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
}

.poll-question i {
    font-size: 22px;
    color: #00d4ff;
}

.poll-description {
    font-size: 16px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 20px;
    text-align: right;
}

.poll-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.poll-votes-count,
.poll-expires {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #b0b0b0;
}

.poll-votes-count i,
.poll-expires i {
    color: #00d4ff;
    font-size: 14px;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.poll-option {
    width: 100%;
}

.poll-option-btn {
    width: 100%;
    padding: 18px 25px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.poll-option-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateX(-5px);
}

.poll-option-btn:active {
    transform: translateX(-3px);
}

.poll-option-result {
    width: 100%;
    padding: 18px 25px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.poll-option-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #fff;
    text-align: right;
}

.option-label {
    font-weight: 700;
    color: #00d4ff;
    font-size: 18px;
    min-width: 30px;
    text-align: center;
}

.poll-option-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.poll-votes-number {
    font-size: 18px;
    font-weight: 700;
    color: #00d4ff;
    min-width: 40px;
}

.poll-votes-label {
    font-size: 14px;
    color: #b0b0b0;
}

.poll-progress-bar {
    flex: 1;
    min-width: 150px;
    height: 8px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.poll-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.8), rgba(0, 153, 204, 0.8));
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.poll-percentage {
    font-size: 16px;
    font-weight: 700;
    color: #00d4ff;
    min-width: 50px;
    text-align: left;
}

.poll-voted-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    color: #00d4ff;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}

.poll-voted-badge i {
    font-size: 16px;
    color: #00d4ff;
}

.poll-login-prompt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    color: #ffc107;
    font-size: 14px;
    margin-top: 15px;
}

.poll-login-prompt i {
    font-size: 16px;
    color: #ffc107;
}

.poll-login-prompt a {
    color: #ffc107;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.poll-login-prompt a:hover {
    color: #ffd54f;
}

/* ============================================
   LOGIN PAGE STYLES
   ============================================ */
.login-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.login-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.login-content {
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.login-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 212, 255, 0.8) 50%,
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 212, 255, 0.7);
    }
}

.login-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6),
                 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    font-size: 18px;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.login-description {
    margin-bottom: 30px;
}

.login-description p {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: center;
}

.login-description p:last-child {
    margin-bottom: 0;
}

.login-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
}

.login-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
    font-size: 15px;
}

.login-feature i {
    color: #00d4ff;
    font-size: 18px;
    width: 24px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.login-error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 59, 48, 0.15);
    border: 2px solid rgba(255, 59, 48, 0.4);
    border-radius: 12px;
    color: #ff6b6b;
    margin-bottom: 25px;
    font-size: 14px;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.login-error i {
    font-size: 18px;
    color: #ff3b30;
}

.login-error span {
    flex: 1;
    line-height: 1.5;
}

.btn-discord-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border: 2px solid rgba(88, 101, 242, 0.5);
    border-radius: 15px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-discord-login::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 ease;
}

.btn-discord-login:hover::before {
    left: 100%;
}

.btn-discord-login:hover {
    background: linear-gradient(135deg, #4752C4 0%, #5865F2 100%);
    box-shadow: 0 6px 30px rgba(88, 101, 242, 0.6);
    transform: translateY(-2px);
    border-color: rgba(88, 101, 242, 0.8);
}

.btn-discord-login:active {
    transform: translateY(0);
    box-shadow: 0 2px 15px rgba(88, 101, 242, 0.4);
}

.btn-discord-login i {
    font-size: 24px;
}

.login-footer-text {
    text-align: center;
    margin-top: 25px;
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

.login-footer-text a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.login-footer-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.login-footer-text a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.login-footer-text a:hover::after {
    width: 100%;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid,
    .stats-grid,
    .quick-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(0, 212, 255, 0.3);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .application-form {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    html {
        background-color: #0a0e1a;
    }
    
    body {
        background-color: #0a0e1a;
        background-size: 250%;
        background-attachment: scroll;
        background-position: center top;
    }
    
    .container {
        padding: 0 18px;
    }
    
    .header {
        padding: 12px 0;
        backdrop-filter: blur(15px);
        min-height: 60px;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        min-height: 36px;
    }
    
    .logo-section {
        gap: 8px;
        flex-shrink: 0;
    }
    
    .logo-img {
        width: 38px;
        height: 38px;
        border-width: 2px;
    }
    
    .logo-text {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .application-title {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }
    
    .application-form {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    /* Application Status Card Mobile */
    .application-status-card {
        margin-bottom: 30px;
        border-radius: 15px;
    }
    
    .status-card-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .status-card-header h2 {
        font-size: 24px;
    }
    
    .status-card-body {
        padding: 20px;
    }
    
    .status-info-row {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 20px;
    }
    
    .status-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        min-width: 100%;
    }
    
    .status-badge {
        padding: 8px 14px;
        font-size: 14px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .detail-item {
        padding: 12px;
    }
    
    .detail-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .detail-section .detail-label {
        font-size: 15px;
    }
    
    .detail-text {
        font-size: 14px;
    }
    
    .status-message {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .status-message i {
        font-size: 20px;
    }
    
    .status-message p {
        font-size: 15px;
    }
    
    /* Admin Management Pages Mobile */
    .admin-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .admin-card-title {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .admin-form {
        gap: 15px;
    }
    
    .staff-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }
    
    .staff-item-avatar {
        width: 60px;
        height: 60px;
    }
    
    .staff-item-name {
        font-size: 18px;
    }
    
    .staff-item-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .staff-item-actions .btn {
        flex: 1;
        min-width: 120px;
    }
    
    .feature-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .feature-input-group .btn-remove-feature {
        width: 100%;
    }
    
    .form-label {
        font-size: 15px;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 14px 16px;
        font-size: 16px;
        min-height: 48px;
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-grid,
    .stats-grid,
    .quick-links-grid,
    .store-grid {
        grid-template-columns: 1fr;
    }
    
    .user-name-small {
        display: none;
    }
    
    .user-profile-link {
        padding: 6px;
        gap: 0;
        width: 40px;
        height: 40px;
    }
    
    .user-avatar-small {
        width: 100%;
        height: 100%;
    }
    
    .user-profile-link i {
        display: none;
    }
    
    .user-profile-link::after {
        font-size: 11px;
        padding: 6px 10px;
        bottom: -40px;
    }
    
    /* Profile Page Mobile */
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .profile-name {
        font-size: 28px;
    }
    
    .profile-card {
        padding: 20px;
    }
    
    .profile-card-title {
        font-size: 20px;
    }
    
    .profile-actions {
        gap: 12px;
    }
    
    .profile-action-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Rules Page Mobile */
    .rules-title {
        font-size: 32px;
        flex-direction: column;
        gap: 15px;
    }
    
    .rules-title i {
        font-size: 32px;
    }
    
    .rules-subtitle {
        font-size: 16px;
    }
    
    .rule-card-header {
        padding: 20px;
        flex-wrap: wrap;
    }
    
    .rule-title {
        font-size: 20px;
    }
    
    .rule-toggle-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .rule-card-content[style*="display: block"] {
        padding: 20px;
    }
    
    .rule-text {
        font-size: 15px;
    }
    
    /* Staff Page Mobile */
    .staff-title {
        font-size: 32px;
        flex-direction: column;
        gap: 15px;
    }
    
    .staff-title i {
        font-size: 32px;
    }
    
    .staff-subtitle {
        font-size: 16px;
    }
    
    .staff-category-title {
        font-size: 24px;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .staff-card {
        padding: 25px 20px;
    }
    
    .staff-avatar {
        width: 100px;
        height: 100px;
    }
    
    .staff-name {
        font-size: 20px;
    }
    
    .staff-position {
        font-size: 16px;
    }
    
    /* Creators Page Mobile */
    .creator-link-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .creator-link-btn i {
        font-size: 10px;
    }
    
    /* Reviews Page Mobile */
    .page-title {
        font-size: 32px;
        flex-direction: column;
        gap: 15px;
    }
    
    .page-title i {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-stats .stat-card {
        padding: 25px 20px;
    }
    
    .reviews-stats .stat-number {
        font-size: 28px;
    }
    
    .review-form-container {
        padding: 25px 20px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-rating {
        align-self: flex-start;
    }
    
    .review-title {
        font-size: 18px;
    }
    
    .review-comment {
        font-size: 15px;
    }
    
    .star-label {
        font-size: 28px;
    }
    
    /* Polls Page Mobile */
    .poll-card {
        padding: 25px 20px;
    }
    
    .poll-question {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .poll-question i {
        font-size: 20px;
    }
    
    .poll-description {
        font-size: 15px;
    }
    
    .poll-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .poll-option-btn {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .poll-option-result {
        padding: 15px 20px;
    }
    
    .poll-option-text {
        font-size: 15px;
    }
    
    .poll-option-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .poll-progress-bar {
        width: 100%;
        min-width: 100%;
    }
    
    .poll-percentage {
        text-align: right;
    }
    
    /* Login Page Responsive */
    .login-section {
        padding: 60px 15px;
    }
    
    .login-content {
        padding: 40px 25px;
    }
    
    .login-title {
        font-size: 26px;
    }
    
    .login-subtitle {
        font-size: 16px;
    }
    
    .login-description p {
        font-size: 14px;
    }
    
    .login-features {
        padding: 20px;
    }
    
    .btn-discord-login {
        padding: 16px 25px;
        font-size: 16px;
    }
    
    .login-logo-img {
        width: 80px;
        height: 80px;
    }
}

