/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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;
}

/* Ensure background is always visible during page transitions */
html {
    background-color: #0a0e1a;
}

@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;
}

/* Preload background image to prevent white flash */
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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   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);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 212, 255, 0.8) rgba(0, 0, 0, 0.2);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
    margin-right: auto;
    flex-shrink: 0;
}

.logo-section:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}

.logo-section:hover .logo-img {
    box-shadow: 0 0 25px 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;
}

.nav-menu {
    display: flex;
    gap: 15px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #e0f2fe;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.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;
}

.mobile-menu-overlay {
    display: none;
}

.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);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-login {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 153, 204, 0.2) 100%);
    border-color: rgba(0, 212, 255, 0.5);
    color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.btn-login:hover {
    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 25px rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
}

.btn-login i {
    font-size: 16px;
}

/* ============================================
   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;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 25px rgba(0, 212, 255, 0.9),
                 0 0 50px rgba(0, 212, 255, 0.7),
                 0 0 75px rgba(0, 212, 255, 0.5);
    letter-spacing: 2px;
    position: relative;
    padding-top: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 212, 255, 0.5) 20%,
        #00d4ff 50%,
        rgba(0, 212, 255, 0.5) 80%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8),
                0 0 40px rgba(0, 212, 255, 0.5);
    border-radius: 2px;
    animation: lineGlow 3s ease-in-out infinite alternate;
}

@keyframes lineGlow {
    0% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.8),
                    0 0 40px rgba(0, 212, 255, 0.5);
        opacity: 0.8;
    }
    100% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 1),
                    0 0 60px rgba(0, 212, 255, 0.7);
        opacity: 1;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 20px;
    color: #7dd3fc;
    text-shadow: 0 0 10px rgba(125, 211, 252, 0.5);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(0, 26, 51, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    padding: 50px 30px 40px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.25),
                inset 0 0 20px rgba(0, 212, 255, 0.05);
    position: relative;
    overflow: visible;
    margin-top: 60px;
}

.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.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5),
                0 0 80px rgba(0, 212, 255, 0.3),
                inset 0 0 30px rgba(0, 212, 255, 0.1);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(0, 153, 204, 0.3) 100%);
    border: 3px solid rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5),
                0 0 50px rgba(0, 212, 255, 0.3),
                inset 0 0 20px rgba(0, 212, 255, 0.15);
    transition: all 0.4s ease;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin: 0;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    animation: iconRing 3s ease-in-out infinite;
}

@keyframes iconRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.feature-card:hover .feature-icon {
    transform: translateX(-50%) translateY(-5px) scale(1.1);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.7),
                0 0 70px rgba(0, 212, 255, 0.5),
                inset 0 0 25px rgba(0, 212, 255, 0.2);
}

.feature-title {
    font-size: 24px;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 15px;
    margin-top: 20px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.feature-description {
    font-size: 16px;
    color: #e0f2fe;
    line-height: 1.8;
    text-align: right;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 153, 204, 0.15) 100%);
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.35),
                inset 0 0 25px rgba(0, 212, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.6),
                0 0 100px rgba(0, 212, 255, 0.4),
                inset 0 0 35px rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.9);
}

.stat-icon {
    font-size: 45px;
    color: #00d4ff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.9);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    display: block;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 30px rgba(0, 212, 255, 1);
}

.stat-number {
    font-size: 52px;
    font-weight: 900;
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8),
                 0 0 30px rgba(0, 212, 255, 0.5),
                 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 12px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    line-height: 1.2;
    display: block;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(125, 211, 252, 0.6),
                 1px 1px 3px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    line-height: 1.4;
    display: block;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    position: relative;
}

.why-us-content {
    max-width: 1100px;
    margin: 0 auto;
}

.why-us-text {
    text-align: center;
}

.why-us-description {
    font-size: 19px;
    color: #e0f2fe;
    line-height: 2.2;
    margin-bottom: 50px;
    text-align: right;
    background: rgba(0, 26, 51, 0.4);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.why-us-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.why-point {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(0, 26, 51, 0.6);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.4);
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.why-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.why-point:hover::before {
    left: 100%;
}

.why-point:hover {
    transform: translateX(-8px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.7);
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.4);
}

.why-point i {
    color: #00d4ff;
    font-size: 24px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.why-point:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(0, 212, 255, 1);
}

.why-point span {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 25px rgba(0, 212, 255, 0.9),
                 0 0 50px rgba(0, 212, 255, 0.7);
}

.cta-description {
    font-size: 20px;
    color: #e0f2fe;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    text-align: right;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.footer-description {
    font-size: 16px;
    color: #e0f2fe;
    line-height: 1.8;
}

.footer-discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(88, 101, 242, 0.1) 100%);
    border: 2px solid rgba(88, 101, 242, 0.5);
    border-radius: 10px;
    color: #5865f2;
    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.3) 0%, rgba(88, 101, 242, 0.2) 100%);
    border-color: rgba(88, 101, 242, 0.8);
    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: #7dd3fc;
    font-size: 16px;
}

.footer-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0f2fe;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00d4ff;
    transform: translateX(-5px);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e0f2fe;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.social-link:hover {
    color: #00d4ff;
    transform: translateX(-5px);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.social-link i {
    font-size: 20px;
}

.footer-text {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ============================================
   DESKTOP (≥992px) - Default styles above
   ============================================ */

/* ============================================
   TABLET (577px - 991px)
   ============================================ */
@media (max-width: 991px) and (min-width: 577px) {
    html {
        background-color: #0a0e1a;
    }
    
    body {
        background-color: #0a0e1a;
        background-size: 150%;
    }
    
    .container {
        padding: 0 30px;
    }
    
    /* Header */
    .header {
        padding: 15px 0;
    }
    
    .header .container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .btn-login {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 100px 0 60px;
        min-height: 90vh;
    }
    
    .hero-logo-img {
        width: 130px;
        height: 130px;
    }
    
    .hero-title {
        font-size: 56px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-description {
        padding: 25px;
        margin-bottom: 35px;
    }
    
    .hero-description p {
        font-size: 17px;
        line-height: 1.7;
    }
    
    .hero-buttons {
        gap: 15px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    /* Section Header */
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 40px;
        padding-top: 18px;
    }
    
    .section-title::before {
        width: 130px;
    }
    
    .section-title::after {
        width: 100px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    /* Features Section */
    .features-section {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card {
        padding: 45px 25px 35px;
        margin-top: 55px;
    }
    
    .feature-icon {
        width: 90px;
        height: 90px;
        font-size: 40px;
        top: -55px;
    }
    
    .feature-title {
        font-size: 22px;
        margin-top: 18px;
    }
    
    .feature-description {
        font-size: 15px;
    }
    
    /* Stats Section */
    .stats-section {
        padding: 70px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stat-card {
        padding: 35px 20px;
    }
    
    .stat-icon {
        font-size: 40px;
        margin-bottom: 18px;
    }
    
    .stat-number {
        font-size: 46px;
        line-height: 1.2;
        display: block;
    }
    
    .stat-label {
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
        line-height: 1.4;
        display: block;
    }
    
    /* Why Us Section */
    .why-us-section {
        padding: 80px 0;
    }
    
    .why-us-description {
        font-size: 18px;
        line-height: 2;
        padding: 30px;
        margin-bottom: 45px;
    }
    
    .why-us-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 45px;
    }
    
    .why-point {
        padding: 22px;
    }
    
    .why-point i {
        font-size: 22px;
    }
    
    .why-point span {
        font-size: 16px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-description {
        font-size: 18px;
        margin-bottom: 35px;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .btn-large {
        padding: 16px 40px;
        font-size: 18px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin-bottom: 35px;
    }
    
    .footer-title {
        font-size: 22px;
    }
    
    .footer-description {
        font-size: 15px;
    }
}

/* ============================================
   MOBILE (≤576px)
   ============================================ */
@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 */
    .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;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 85%;
        max-width: 300px;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        border-left: 2px solid rgba(0, 212, 255, 0.3);
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        padding: 18px 25px;
        font-size: 18px;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
        width: 100%;
        text-align: right;
        border-radius: 0;
    }
    
    .nav-link:hover {
        background: rgba(0, 212, 255, 0.15);
        border-right: 4px solid #00d4ff;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(0, 212, 255, 0.1);
        border: 2px solid rgba(0, 212, 255, 0.3);
        border-radius: 8px;
        color: #00d4ff;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(0, 212, 255, 0.2);
        border-color: rgba(0, 212, 255, 0.5);
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    }
    
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .header-right {
        width: auto;
        flex-shrink: 0;
        gap: 8px;
    }
    
    .btn-login {
        padding: 10px 14px;
        font-size: 13px;
        min-width: auto;
        gap: 6px;
    }
    
    .btn-login span {
        display: none; /* Hide text, show icon only on mobile */
    }
    
    .btn-login i {
        font-size: 16px;
    }
    
    .user-profile-link {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .user-name-small {
        display: none; /* Hide name on mobile, show only avatar and icon */
    }
    
    .user-avatar-small {
        width: 30px;
        height: 30px;
    }
    
    .user-profile-link i {
        font-size: 14px;
        margin-right: 0;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .hero-logo {
        margin-bottom: 20px;
    }
    
    .hero-logo-img {
        width: 100px;
        height: 100px;
        border-width: 3px;
        padding: 3px;
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.5),
                    0 0 60px rgba(0, 212, 255, 0.3);
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: 1px;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        padding: 18px 15px;
        margin-bottom: 25px;
        border-radius: 12px;
        background: rgba(0, 26, 51, 0.75);
    }
    
    .hero-description p {
        font-size: 14px;
        line-height: 1.7;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        justify-content: center;
        border-radius: 10px;
        gap: 10px;
    }
    
    .btn i {
        font-size: 16px;
    }
    
    /* Buttons */
    .btn-large {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    /* Section Header */
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-title {
        font-size: 28px;
        letter-spacing: 0.5px;
        padding-top: 12px;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .section-title::before {
        width: 80px;
        height: 2.5px;
    }
    
    .section-title::after {
        width: 60px;
        height: 2px;
        bottom: -12px;
    }
    
    .section-subtitle {
        font-size: 15px;
        margin-top: 5px;
    }
    
    /* Features Section */
    .features-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-card {
        padding: 35px 18px 28px;
        margin-top: 45px;
        border-radius: 15px;
    }
    
    .feature-icon {
        width: 75px;
        height: 75px;
        font-size: 32px;
        top: -45px;
        border-width: 2.5px;
    }
    
    .feature-icon::before {
        width: calc(100% + 10px);
        height: calc(100% + 10px);
        border-width: 1.5px;
    }
    
    .feature-title {
        font-size: 19px;
        margin-top: 12px;
        margin-bottom: 10px;
    }
    
    .feature-description {
        font-size: 13.5px;
        line-height: 1.7;
        text-align: center;
    }
    
    /* Stats Section */
    .stats-section {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .stat-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .stat-number {
        font-size: 36px;
        margin-bottom: 8px;
        line-height: 1.2;
        display: block;
    }
    
    .stat-label {
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
        line-height: 1.4;
        display: block;
    }
    
    /* Why Us Section */
    .why-us-section {
        padding: 50px 0;
    }
    
    .why-us-description {
        font-size: 14.5px;
        line-height: 1.8;
        padding: 20px 18px;
        margin-bottom: 30px;
        border-radius: 12px;
        text-align: center;
    }
    
    .why-us-points {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .why-point {
        padding: 18px;
        border-radius: 12px;
        gap: 12px;
        text-align: right;
    }
    
    .why-point i {
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .why-point span {
        font-size: 14px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 26px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .cta-description {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.7;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 35px 0 18px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-title {
        font-size: 19px;
        margin-bottom: 12px;
    }
    
    .footer-description {
        font-size: 13.5px;
        line-height: 1.7;
    }
    
    .footer-discord-btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 250px;
        justify-content: center;
        margin: 0 auto;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
    
    /* Scrollbar for mobile */
    ::-webkit-scrollbar {
        width: 4px;
    }
    
    /* Smooth scrolling */
    html {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* Fix for iOS viewport */
    @supports (-webkit-touch-callout: none) {
        body {
            min-height: -webkit-fill-available;
        }
    }
    
    /* Touch-friendly improvements */
    .btn,
    .nav-link,
    .btn-login,
    .footer-discord-btn,
    .mobile-menu-toggle,
    .user-profile-link {
        min-height: 44px;
        min-width: 44px;
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.3);
        touch-action: manipulation;
    }
    
    /* Prevent text selection on buttons */
    .btn,
    .btn-login,
    .nav-link {
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* Improve input touch targets */
    input,
    textarea,
    select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        -webkit-appearance: none;
        touch-action: manipulation;
    }
    
    /* Fix iOS input styling */
    input[type="text"],
    input[type="email"],
    input[type="number"],
    input[type="tel"],
    textarea {
        -webkit-appearance: none;
        border-radius: 12px;
    }
    
    /* Improve text readability */
    .hero-description p,
    .feature-description,
    .why-us-description,
    .footer-description {
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    /* Reduce animation intensity on mobile */
    .hero-logo-img {
        animation: logoFloat 4s ease-in-out infinite;
    }
    
    @keyframes logoFloat {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }
}

/* ============================================
   MOBILE LANDSCAPE (≤576px landscape)
   ============================================ */
@media (max-width: 576px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 70px 0 35px;
    }
    
    .hero-logo-img {
        width: 85px;
        height: 85px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .hero-description p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        gap: 8px;
    }
    
    .btn {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .features-section,
    .stats-section,
    .why-us-section,
    .cta-section {
        padding: 45px 0;
    }
    
    .features-grid {
        gap: 35px;
    }
    
    .feature-card {
        padding: 30px 15px 25px;
        margin-top: 40px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        top: -40px;
    }
    
    .stats-grid {
        gap: 12px;
    }
    
    .stat-card {
        padding: 20px 12px;
    }
    
    .stat-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 32px;
        line-height: 1.2;
        display: block;
    }
    
    .stat-label {
        font-size: 12px;
        font-weight: 600;
        color: #ffffff;
        line-height: 1.4;
        display: block;
    }
}

/* ============================================
   LARGE MOBILE / SMALL TABLET (577px - 768px)
   ============================================ */
@media (min-width: 577px) and (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-points {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-wrap: wrap;
    }
    
    .btn {
        flex: 1;
        min-width: 200px;
    }
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    position: relative;
}

.login-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.login-content {
    background: rgba(0, 26, 51, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.3),
                inset 0 0 30px rgba(0, 212, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.login-content::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%);
    animation: loginGlow 8s ease-in-out infinite;
}

@keyframes loginGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.login-logo {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.login-logo-img {
    width: 120px;
    height: 120px;
    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);
    background: rgba(0, 26, 51, 0.5);
    padding: 5px;
    animation: logoFloat 3s ease-in-out infinite;
}

.login-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.9),
                 0 0 60px rgba(0, 212, 255, 0.7);
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.login-subtitle {
    font-size: 20px;
    color: #7dd3fc;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(125, 211, 252, 0.6);
    position: relative;
    z-index: 1;
}

.login-description {
    background: rgba(0, 26, 51, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: right;
    position: relative;
    z-index: 1;
}

.login-description p {
    font-size: 16px;
    color: #e0f2fe;
    line-height: 1.9;
    margin-bottom: 15px;
}

.login-description p:last-child {
    margin-bottom: 0;
}

.login-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.login-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 26, 51, 0.5);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.login-feature:hover {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateX(-5px);
}

.login-feature i {
    color: #00d4ff;
    font-size: 20px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.9);
}

.login-feature span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.btn-discord-login {
    width: 100%;
    padding: 18px 30px;
    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);
    border-radius: 12px;
    color: #5865f2;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.4);
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.btn-discord-login: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 40px rgba(88, 101, 242, 0.7);
    transform: translateY(-3px);
}

.btn-discord-login i {
    font-size: 24px;
}

.login-footer-text {
    color: #7dd3fc;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.login-footer-text a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
    transition: all 0.3s ease;
}

.login-footer-text a:hover {
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.9);
    text-decoration: underline;
}

/* Login Error Message */
.login-error {
    background: rgba(255, 59, 48, 0.15);
    border: 2px solid rgba(255, 59, 48, 0.5);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ff3b30;
    font-size: 15px;
    animation: errorPulse 2s ease-in-out infinite;
}

.login-error i {
    font-size: 20px;
    color: #ff3b30;
    flex-shrink: 0;
}

.login-error span {
    line-height: 1.6;
}

@keyframes errorPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 59, 48, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 59, 48, 0.5);
    }
}

/* Login Page Responsive */
@media (max-width: 768px) {
    .login-content {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .login-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .login-title {
        font-size: 32px;
    }
    
    .login-subtitle {
        font-size: 18px;
    }
    
    .login-description {
        padding: 20px;
    }
    
    .login-description p {
        font-size: 15px;
    }
    
    .login-feature {
        padding: 12px 18px;
    }
    
    .login-feature span {
        font-size: 15px;
    }
    
    .btn-discord-login {
        padding: 16px 25px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .login-section {
        padding: 90px 0 50px;
        min-height: calc(100vh - 60px);
    }
    
    .login-container {
        padding: 0 15px;
    }
    
    .login-content {
        padding: 25px 18px;
        border-radius: 15px;
    }
    
    .login-logo-img {
        width: 85px;
        height: 85px;
    }
    
    .login-title {
        font-size: 26px;
        margin-bottom: 10px;
        word-break: break-word;
    }
    
    .login-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .login-description {
        padding: 16px 14px;
        margin-bottom: 20px;
    }
    
    .login-description p {
        font-size: 14px;
        line-height: 1.7;
        word-break: break-word;
    }
    
    .login-features {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .login-feature {
        padding: 12px 14px;
        min-height: 44px;
    }
    
    .login-feature i {
        font-size: 17px;
        min-width: 24px;
    }
    
    .login-feature span {
        font-size: 14px;
        word-break: break-word;
    }
    
    .btn-discord-login {
        padding: 16px 20px;
        font-size: 16px;
        min-height: 52px;
        width: 100%;
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .login-footer-text {
        font-size: 14px;
    }
}

/* Profile Page Styles */
.profile-section {
    min-height: calc(100vh - 200px);
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.profile-container {
    max-width: 1000px;
    margin: 0 auto;
}

.profile-header {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile-avatar-container {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    object-fit: cover;
    animation: logoGlow 3s ease-in-out infinite;
}

.profile-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00d4ff;
    border-radius: 20px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #00d4ff;
    font-weight: 600;
}

.profile-status i {
    color: #00ff00;
    font-size: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.profile-info {
    flex: 1;
}

.profile-name-header {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.profile-name {
    font-size: 36px;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    font-weight: 700;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid rgba(255, 193, 7, 0.5);
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.admin-badge i {
    font-size: 16px;
}

.profile-username {
    font-size: 20px;
    color: #b0b0b0;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.profile-verified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.5);
    border-radius: 15px;
    padding: 6px 12px;
    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);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile-card-title {
    font-size: 24px;
    color: #00d4ff;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    font-weight: 700;
}

.profile-card-title i {
    font-size: 22px;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.profile-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b0b0;
    font-size: 16px;
    font-weight: 500;
}

.detail-label i {
    color: #00d4ff;
    width: 20px;
}

.detail-value {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

/* Email Container */
.email-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.email-hidden {
    color: #b0b0b0;
    font-style: italic;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

.email-hidden:hover {
    color: #00d4ff;
}

.email-visible {
    color: #ffffff;
}

.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: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.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);
    transform: scale(1.05);
}

.email-toggle-btn:active {
    transform: scale(0.95);
}

.email-toggle-btn i {
    font-size: 14px;
}

.email-item .detail-value {
    flex: 1;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-item {
    background: rgba(0, 212, 255, 0.1);
    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;
}

.stat-item:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 24px;
    color: #00d4ff;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-value {
    font-size: 28px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.stat-label {
    font-size: 14px;
    color: #b0b0b0;
    font-weight: 500;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 12px;
    color: #00d4ff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.profile-action-btn:hover {
    background: rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.profile-action-btn.btn-danger {
    background: rgba(255, 59, 48, 0.2);
    border-color: rgba(255, 59, 48, 0.5);
    color: #ff3b30;
}

.profile-action-btn.btn-danger:hover {
    background: rgba(255, 59, 48, 0.3);
    border-color: rgba(255, 59, 48, 0.8);
    box-shadow: 0 0 20px rgba(255, 59, 48, 0.5);
}

.profile-action-btn.admin-btn {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.5);
    color: #ffc107;
}

.profile-action-btn.admin-btn:hover {
    background: rgba(255, 193, 7, 0.3);
    border-color: rgba(255, 193, 7, 0.8);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.admin-card-profile {
    border-color: rgba(255, 193, 7, 0.3);
    background: rgba(255, 193, 7, 0.05);
}

/* User Profile Link in Header */
.user-profile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-profile-link:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.user-profile-link.active {
    background: rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.user-avatar-small {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #00d4ff;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.user-name-small {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.user-profile-link i {
    color: #00d4ff;
    font-size: 16px;
    margin-right: auto;
    transition: all 0.3s ease;
}

.user-profile-link:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

/* Profile Page Responsive */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .profile-avatar {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 28px;
    }
    
    .profile-username {
        font-size: 18px;
    }
    
    .profile-section {
        padding: 80px 0 40px;
    }
    
    .profile-container {
        max-width: 100%;
    }
    
    .profile-header {
        padding: 25px 18px;
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 24px;
        word-break: break-word;
    }
    
    .profile-username {
        font-size: 16px;
        word-break: break-word;
    }
    
    .profile-card {
        padding: 18px;
        margin-bottom: 20px;
    }
    
    .profile-card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .profile-card-title i {
        font-size: 20px;
    }
    
    .profile-info-item {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .info-label {
        font-size: 13px;
    }
    
    .info-value {
        font-size: 15px;
        word-break: break-word;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-icon i {
        font-size: 22px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .profile-actions {
        gap: 12px;
    }
    
    .profile-action-btn {
        padding: 14px 20px;
        font-size: 15px;
        min-height: 48px;
    }
    
    .user-profile-link {
        padding: 6px 15px;
        gap: 10px;
    }
    
    .user-name-small {
        font-size: 13px;
    }
    
    .user-profile-link i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .profile-section {
        padding: 100px 0 60px;
    }
    
    .profile-header {
        padding: 25px 15px;
        gap: 20px;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .profile-card {
        padding: 18px;
    }
    
    .profile-card-title {
        font-size: 20px;
    }
    
    .detail-label,
    .detail-value {
        font-size: 14px;
    }
    
    .stat-value {
        font-size: 24px;
    }
}

/* ============================================
   RULES PAGE STYLES
   ============================================ */
.rules-section {
    padding: 120px 0 80px;
    min-height: calc(100vh - 300px);
}

.rules-header {
    text-align: center;
    margin-bottom: 60px;
}

.rules-title {
    font-size: 48px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
    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;
    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.2);
    border: 2px solid rgba(255, 59, 48, 0.5);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ff3b30;
}

.rules-error i {
    font-size: 24px;
}

.rules-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rule-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.rule-card:hover {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.rule-card-header {
    margin-bottom: 0;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.rule-card-header:hover {
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    margin: -15px;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.rule-title-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.rule-title-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rule-toggle-icon {
    font-size: 20px;
    color: #00d4ff;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.rule-card-header:hover .rule-toggle-icon {
    transform: scale(1.2);
}

.rule-title {
    font-size: 28px;
    font-weight: 700;
    color: #00d4ff;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}


.rule-card-content {
    line-height: 2;
    padding-top: 25px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rule-text {
    font-size: 16px;
    color: #e0f2fe;
    text-align: right;
    white-space: pre-line;
}

.rule-text strong {
    color: #00d4ff;
    font-weight: 700;
}

.rules-empty {
    text-align: center;
    padding: 60px 20px;
    color: #b0b0b0;
}

.rules-empty i {
    font-size: 64px;
    margin-bottom: 20px;
    color: rgba(0, 212, 255, 0.5);
}

.rules-empty p {
    font-size: 20px;
}

/* Rules Page Responsive */
@media (max-width: 991px) {
    .rules-section {
        padding: 100px 0 60px;
    }
    
    .rules-title {
        font-size: 36px;
    }
    
    .rules-title i {
        font-size: 32px;
    }
    
    .rules-subtitle {
        font-size: 18px;
    }
    
    .rule-card {
        padding: 25px;
    }
    
    .rule-number {
        font-size: 20px;
    }
    
    .rule-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .rules-section {
        padding: 80px 0 40px;
    }
    
    .rules-header {
        margin-bottom: 40px;
    }
    
    .rules-title {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }
    
    .rules-title i {
        font-size: 26px;
    }
    
    .rules-subtitle {
        font-size: 16px;
    }
    
    .rules-container {
        gap: 20px;
    }
    
    .rule-card {
        padding: 16px;
        border-radius: 15px;
        margin-bottom: 15px;
    }
    
    .rule-card-header {
        margin-bottom: 0;
        padding-bottom: 12px;
        min-height: 44px;
        display: flex;
        align-items: center;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.2);
    }
    
    .rule-card-header:hover {
        padding: 12px;
        margin: -12px;
        margin-bottom: 0;
        padding-bottom: 12px;
    }
    
    .rule-title {
        font-size: 20px;
        word-break: break-word;
    }
    
    .rule-toggle-icon {
        font-size: 18px;
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }
    
    .rule-text {
        font-size: 14px;
        line-height: 1.8;
        word-break: break-word;
    }
    
    .rule-card-content {
        padding-top: 15px;
    }
    
    .rule-title-section {
        gap: 15px;
    }
    
    .rule-title {
        font-size: 22px;
    }
    
    .rule-toggle-icon {
        font-size: 18px;
        width: 28px;
        height: 28px;
    }
    
    .rule-card-content {
        padding-top: 20px;
    }
    
    .rule-text {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .rules-empty {
        padding: 40px 15px;
    }
    
    .rules-empty i {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .rules-empty p {
        font-size: 16px;
    }
}

/* ============================================
   APPLICATION PAGE STYLES
   ============================================ */
.application-section {
    padding: 120px 0 80px;
    min-height: calc(100vh - 300px);
}

.application-header {
    text-align: center;
    margin-bottom: 50px;
}

.application-title {
    font-size: 48px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.application-title i {
    font-size: 42px;
    animation: logoGlow 3s ease-in-out infinite;
}

.application-subtitle {
    font-size: 20px;
    color: #b0b0b0;
    line-height: 1.6;
}

.application-message {
    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;
}

.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.warning {
    border-color: rgba(255, 193, 7, 0.5);
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.application-message.warning p {
    margin: 8px 0;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 10px;
    font-size: 14px;
}

.status-badge.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.5);
}

.status-badge.approved {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.5);
}

.status-badge.rejected {
    background: rgba(255, 59, 48, 0.2);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.5);
}

/* Application Status Card */
.application-status-card {
    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: 900px;
    margin: 0 auto;
}

.status-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.status-card-header i {
    font-size: 32px;
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.status-card-header h2 {
    color: #00d4ff;
    font-size: 28px;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.status-card-body {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.status-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.status-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-label {
    color: #b0b0b0;
    font-size: 14px;
    font-weight: 600;
}

.status-value {
    color: #e0f2fe;
    font-size: 16px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
}

.status-badge i {
    font-size: 14px;
}

.application-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.application-details h3 {
    color: #00d4ff;
    font-size: 20px;
    margin: 0 0 20px 0;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    color: #b0b0b0;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-label i {
    color: #00d4ff;
    font-size: 14px;
}

.detail-value {
    color: #e0f2fe;
    font-size: 16px;
}

.detail-section {
    margin-bottom: 20px;
}

.detail-section .detail-label {
    margin-bottom: 10px;
    display: block;
}

.detail-text {
    color: #e0f2fe;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 3px solid rgba(0, 212, 255, 0.5);
}

.status-message {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-message i {
    font-size: 24px;
    color: #00d4ff;
}

.status-message p {
    color: #e0f2fe;
    font-size: 16px;
    margin: 0;
    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-weight: 700;
    color: #ffc107;
}

.application-message i {
    font-size: 24px;
}

.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;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.form-label i {
    font-size: 16px;
}

.required {
    color: #ff3b30;
}

.form-input,
.form-textarea {
    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;
}

.form-input:focus,
.form-textarea: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-help {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #b0b0b0;
}

.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);
}

.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);
}

.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-details i {
    color: #5865F2;
}

.user-info-note {
    color: #7dd3fc;
    font-size: 14px;
    margin: 0;
    text-align: center;
    font-style: italic;
}

/* Application Type Badges */
.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;
}

.type-badge i {
    font-size: 12px;
}

.app-type-badge {
    margin-top: 5px;
}

.app-type-badge .type-badge {
    font-size: 12px;
    padding: 4px 10px;
}

/* Form Hint */
.form-hint {
    font-size: 13px;
    color: #7dd3fc;
    margin-top: 8px;
    font-style: italic;
    line-height: 1.5;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.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;
}

/* Application Page Responsive */
@media (max-width: 991px) {
    .application-section {
        padding: 100px 0 60px;
    }
    
    .application-title {
        font-size: 36px;
    }
    
    .application-title i {
        font-size: 32px;
    }
    
    .application-subtitle {
        font-size: 18px;
    }
    
    .application-form {
        padding: 30px;
    }
    
    .form-label {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .application-section {
        padding: 80px 0 40px;
    }
    
    .application-header {
        margin-bottom: 30px;
    }
    
    .application-title {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }
    
    .application-title i {
        font-size: 26px;
    }
    
    .application-subtitle {
        font-size: 16px;
    }
    
    .application-form {
        padding: 20px;
        border-radius: 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-label {
        font-size: 15px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 16px;
        min-height: 48px;
        -webkit-appearance: none;
        border-radius: 12px;
    }
    
    .form-textarea {
        min-height: 120px;
        line-height: 1.6;
    }
    
    .form-select {
        padding: 14px 16px;
        font-size: 16px;
        min-height: 48px;
        -webkit-appearance: none;
        border-radius: 12px;
    }
    
    .form-checkbox input[type="checkbox"] {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
    }
    
    .form-checkbox label {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
    }
    
    .user-info-box {
        padding: 18px;
        margin-bottom: 25px;
    }
    
    .user-info-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .user-info-avatar {
        width: 55px;
        height: 55px;
    }
    
    .user-info-details h3 {
        font-size: 17px;
        word-break: break-word;
    }
    
    .user-info-details p {
        font-size: 14px;
        word-break: break-word;
    }
    
    .application-status-card {
        padding: 20px 18px;
    }
    
    .status-card-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .status-card-header h2 {
        font-size: 22px;
        word-break: break-word;
    }
    
    .status-badge {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .status-info-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .detail-item {
        padding: 12px;
    }
    
    .detail-label {
        font-size: 13px;
    }
    
    .detail-value {
        font-size: 14px;
        word-break: break-word;
    }
    
    .cooldown-remaining {
        font-size: 14px;
        padding: 12px;
    }
    
    .status-message {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   ADMIN PANEL STYLES
   ============================================ */
.admin-section {
    padding: 120px 0 80px;
    min-height: calc(100vh - 300px);
}

.admin-header {
    text-align: center;
    margin-bottom: 50px;
}

.admin-title {
    font-size: 48px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.admin-title i {
    font-size: 42px;
    animation: logoGlow 3s ease-in-out infinite;
}

.admin-subtitle {
    font-size: 20px;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Admin Quick Actions */
.admin-quick-actions {
    margin-bottom: 50px;
}

.quick-actions-title {
    font-size: 28px;
    color: #00d4ff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.quick-actions-title i {
    font-size: 24px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.quick-action-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.quick-action-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.7);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    background: rgba(0, 0, 0, 0.8);
}

.quick-action-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 153, 204, 0.2) 100%);
    border: 3px solid rgba(0, 212, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #00d4ff;
    transition: all 0.3s ease;
}

.quick-action-card:hover .quick-action-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
}

.quick-action-title {
    font-size: 22px;
    font-weight: 700;
    color: #00d4ff;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.quick-action-desc {
    font-size: 14px;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.6);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.stat-icon.total {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 2px solid rgba(0, 212, 255, 0.4);
}

.stat-icon.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 2px solid rgba(255, 193, 7, 0.4);
}

.stat-icon.approved {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 2px solid rgba(0, 255, 0, 0.4);
}

.stat-icon.rejected {
    background: rgba(255, 59, 48, 0.2);
    color: #ff3b30;
    border: 2px solid rgba(255, 59, 48, 0.4);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px 0;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.stat-label {
    font-size: 16px;
    color: #b0b0b0;
    margin: 0;
}

.admin-applications {
    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);
}

.applications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.applications-title {
    font-size: 28px;
    color: #00d4ff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.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: #b0b0b0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.filter-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.6);
    color: #00d4ff;
}

.filter-btn.active {
    background: rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.8);
    color: #00d4ff;
}

.no-applications {
    text-align: center;
    padding: 60px 20px;
    color: #b0b0b0;
}

.no-applications i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.applications-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.application-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.application-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 4px 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;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #5865F2;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.app-user-details h3 {
    color: #00d4ff;
    font-size: 18px;
    margin: 0 0 5px 0;
}

.app-user-details p {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
}

.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.4);
}

.app-status-badge.status-approved {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.4);
}

.app-status-badge.status-rejected {
    background: rgba(255, 59, 48, 0.2);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.4);
}

.app-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.app-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.app-detail-label {
    color: #b0b0b0;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-detail-label i {
    color: #00d4ff;
    font-size: 12px;
}

.app-detail-value {
    color: #e0f2fe;
    font-size: 15px;
}

.app-description {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.app-description p {
    color: #e0f2fe;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.app-description p:last-child {
    margin-bottom: 0;
}

.app-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-action {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    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.4);
}

.btn-approve:hover {
    background: rgba(0, 255, 0, 0.3);
    border-color: rgba(0, 255, 0, 0.6);
    transform: translateY(-2px);
}

.btn-reject {
    background: rgba(255, 59, 48, 0.2);
    color: #ff3b30;
    border: 2px solid rgba(255, 59, 48, 0.4);
}

.btn-reject:hover {
    background: rgba(255, 59, 48, 0.3);
    border-color: rgba(255, 59, 48, 0.6);
    transform: translateY(-2px);
}

.btn-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 2px solid rgba(255, 193, 7, 0.4);
}

.btn-pending:hover {
    background: rgba(255, 193, 7, 0.3);
    border-color: rgba(255, 193, 7, 0.6);
    transform: translateY(-2px);
}

.btn-view {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 2px solid rgba(0, 212, 255, 0.4);
}

.btn-view:hover {
    background: rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
}

/* Responsive for Quick Actions */
@media (max-width: 768px) {
    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-action-card {
        padding: 25px 20px;
    }
    
    .quick-action-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .quick-action-title {
        font-size: 20px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid rgba(0, 212, 255, 0.5);
    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;
    color: #b0b0b0;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ff3b30;
}

.modal-details {
    margin-top: 20px;
}

.modal-detail-row {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.modal-detail-row:last-child {
    border-bottom: none;
}

.modal-label {
    color: #00d4ff;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.modal-value {
    color: #e0f2fe;
    font-size: 16px;
    display: block;
}

.modal-text {
    color: #e0f2fe;
    font-size: 15px;
    line-height: 1.6;
    margin: 8px 0 0 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 3px solid rgba(0, 212, 255, 0.5);
}

/* Admin Panel Responsive */
@media (max-width: 991px) {
    .admin-section {
        padding: 100px 0 60px;
    }
    
    .admin-title {
        font-size: 36px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .applications-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .admin-section {
        padding: 80px 0 40px;
    }
    
    .admin-title {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }
    
    .quick-actions-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .quick-action-card {
        padding: 20px 15px;
    }
    
    .quick-action-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .quick-action-title {
        font-size: 18px;
    }
    
    .quick-action-desc {
        font-size: 13px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-applications {
        padding: 20px;
    }
    
    .app-card {
        padding: 18px;
        margin-bottom: 15px;
    }
    
    .app-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .app-card-header h3 {
        font-size: 18px;
        word-break: break-word;
    }
    
    .app-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .app-detail-item {
        padding: 10px;
    }
    
    .app-detail-label {
        font-size: 12px;
    }
    
    .app-detail-value {
        font-size: 14px;
        word-break: break-word;
    }
    
    .app-card-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-action {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .applications-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .applications-table table {
        min-width: 600px;
    }
    
    .modal {
        padding: 0;
        align-items: flex-end;
    }
    
    .modal-content {
        padding: 25px 20px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
    
    .modal-close {
        top: 15px;
        left: 15px;
        font-size: 28px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
    }
    
    .modal-detail-row {
        margin-bottom: 18px;
        padding-bottom: 12px;
    }
    
    .modal-label {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .modal-value {
        font-size: 15px;
        word-break: break-word;
    }
    
    .modal-text {
        font-size: 14px;
        padding: 12px;
        line-height: 1.6;
    }
}

/* ============================================
   STAFF SECTION
   ============================================ */
.staff-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.staff-header {
    text-align: center;
    margin-bottom: 60px;
}

.staff-title {
    font-size: 48px;
    color: #00d4ff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.staff-title i {
    font-size: 48px;
}

.staff-subtitle {
    font-size: 20px;
    color: #b0b0b0;
    margin-top: 10px;
}

.staff-category {
    margin-bottom: 50px;
}

.staff-category-title {
    font-size: 32px;
    color: #00d4ff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    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.6);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.staff-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.staff-avatar {
    margin-bottom: 20px;
}

.staff-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    object-fit: cover;
}

.staff-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.staff-name {
    font-size: 22px;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.staff-position {
    font-size: 16px;
    color: #00d4ff;
}

/* Creator Links */
.creator-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.creator-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    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.4);
    border-radius: 8px;
    color: #00d4ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.creator-link-btn:hover {
    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.7);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.creator-link-btn i {
    font-size: 12px;
}

/* Link Item in Forms */
.link-item {
    margin-bottom: 10px;
}

.link-item .form-input {
    margin-bottom: 0;
}

/* Creator Links in Admin Panel */
.staff-item .creator-links {
    margin-top: 8px;
    justify-content: flex-start;
}

.staff-item .creator-link-btn {
    font-size: 13px;
    padding: 6px 12px;
}

/* Mobile Responsive for Creator Links */
@media (max-width: 768px) {
    .creator-links {
        justify-content: center;
        gap: 6px;
    }
    
    .creator-link-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .staff-item .creator-links {
        justify-content: center;
    }
    
    .link-item > div {
        flex-direction: column;
        gap: 8px;
    }
    
    .link-item .form-input {
        width: 100%;
    }
    
    .link-item .remove-link,
    .link-item .remove-edit-link {
        width: 100%;
        justify-content: center;
    }
}
    margin: 0;
    font-weight: 600;
}

.staff-username {
    font-size: 14px;
    color: #b0b0b0;
    margin: 0;
}

.staff-empty {
    text-align: center;
    padding: 80px 20px;
    color: #b0b0b0;
}

.staff-empty i {
    font-size: 64px;
    margin-bottom: 20px;
    color: rgba(0, 212, 255, 0.5);
}

.staff-empty p {
    font-size: 20px;
}

/* Admin Staff Management */
.admin-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.admin-card-title {
    font-size: 24px;
    color: #00d4ff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-card-title i {
    font-size: 22px;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.staff-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.staff-item {
    background: rgba(0, 0, 0, 0.4);
    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 {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 0, 0, 0.6);
}

.staff-item-avatar {
    flex-shrink: 0;
}

.staff-item-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.5);
    object-fit: cover;
}

.staff-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.staff-item-name {
    font-size: 20px;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.staff-item-username {
    font-size: 14px;
    color: #b0b0b0;
    margin: 0;
}

.staff-item-position {
    font-size: 16px;
    color: #00d4ff;
    margin: 0;
    font-weight: 600;
}

.staff-item-role {
    margin-top: 5px;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.role-badge i {
    font-size: 12px;
}

.role-full-admin {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.role-hr-admin {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.4);
}

.role-hr {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.4);
}

.staff-item-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-edit-staff,
.btn-delete-staff {
    padding: 10px 18px;
    font-size: 14px;
    min-width: auto;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #b0b0b0;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 15px;
    color: rgba(0, 212, 255, 0.5);
}

.empty-state p {
    font-size: 18px;
}

.modal-title {
    font-size: 24px;
    color: #00d4ff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-title i {
    font-size: 22px;
}

/* Staff Section Responsive */
@media (max-width: 768px) {
    .staff-section {
        padding: 100px 0 60px;
    }
    
    .staff-title {
        font-size: 36px;
    }
    
    .staff-title i {
        font-size: 36px;
    }
    
    .staff-category-title {
        font-size: 26px;
    }
    
    .staff-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .staff-item {
        flex-direction: column;
        text-align: center;
    }
    
    .staff-item-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-edit-staff,
    .btn-delete-staff {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .staff-section {
        padding: 80px 0 40px;
    }
    
    .staff-title {
        font-size: 28px;
        flex-direction: column;
        gap: 10px;
    }
    
    .staff-title i {
        font-size: 26px;
    }
    
    .staff-subtitle {
        font-size: 16px;
    }
    
    .staff-category-title {
        font-size: 22px;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .staff-card {
        padding: 25px 20px;
    }
    
    .staff-avatar img {
        width: 80px;
        height: 80px;
    }
    
    .staff-name {
        font-size: 20px;
    }
    
    .admin-card {
        padding: 20px;
    }
    
    .admin-card-title {
        font-size: 20px;
    }
    
    .staff-item {
        padding: 15px;
    }
    
    .staff-item-avatar img {
        width: 60px;
        height: 60px;
    }
    
    .staff-item-name {
        font-size: 18px;
    }
}

/* ============================================
   PARTNERS STYLES
   ============================================ */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background: rgba(0, 26, 51, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-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;
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

.partner-logo {
    margin-bottom: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.partner-logo-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(0, 212, 255, 0.5);
}

.partner-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #00d4ff;
}

.partner-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.partner-meta {
    margin-bottom: 20px;
}

.partner-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    font-size: 14px;
    color: #00d4ff;
}

/* ============================================
   REVIEWS STYLES
   ============================================ */
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.review-form-container {
    background: rgba(0, 26, 51, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.review-form {
    margin-top: 20px;
}

.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: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-label:hover,
.star-label:hover ~ .star-label {
    color: #ffd700;
}

.rating-input input[type="radio"]:checked ~ .star-label {
    color: #ffd700;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-card {
    background: rgba(0, 26, 51, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.review-card.featured {
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.review-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.5);
}

.review-user-info {
    flex: 1;
}

.review-username {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #00d4ff;
}

.review-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.review-rating {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

.review-rating i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.3);
}

.review-rating i.active {
    color: #ffd700;
}

.review-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.review-comment {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   NOTIFICATIONS STYLES
   ============================================ */
.notification-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    color: #00d4ff;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-right: 10px;
    position: relative;
}

.notification-link:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    transform: scale(1.1);
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.notification-card {
    background: rgba(0, 26, 51, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.notification-card.unread {
    border-left: 4px solid #00d4ff;
}

.notification-card.success {
    border-left-color: #4caf50;
}

.notification-card.warning {
    border-left-color: #ff9800;
}

.notification-card.error {
    border-left-color: #f44336;
}

.notification-card.announcement {
    border-left-color: #ffd700;
}

.notification-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #00d4ff;
    flex-shrink: 0;
}

.notification-card.success .notification-icon {
    color: #4caf50;
}

.notification-card.warning .notification-icon {
    color: #ff9800;
}

.notification-card.error .notification-icon {
    color: #f44336;
}

.notification-card.announcement .notification-icon {
    color: #ffd700;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00d4ff;
}

.notification-message {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.notification-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.notification-badge {
    position: absolute;
    top: 20px;
    left: 20px;
}

.badge-new {
    background: #00d4ff;
    color: #000;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

/* ============================================
   POLLS STYLES
   ============================================ */
.polls-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.poll-card {
    background: rgba(0, 26, 51, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.poll-card:hover {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.poll-header {
    margin-bottom: 25px;
}

.poll-question {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #00d4ff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.poll-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.poll-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.poll-votes-count,
.poll-expires {
    display: flex;
    align-items: center;
    gap: 6px;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.poll-option-btn {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    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);
    transform: translateX(-5px);
}

.option-label {
    font-weight: 700;
    color: #00d4ff;
    min-width: 30px;
}

.poll-option-result {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
}

.poll-option-text {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 16px;
}

.poll-option-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.poll-votes-number {
    font-weight: 700;
    color: #00d4ff;
    font-size: 18px;
}

.poll-votes-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.poll-progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.poll-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.poll-percentage {
    font-size: 14px;
    font-weight: 700;
    color: #00d4ff;
    min-width: 50px;
    text-align: left;
}

.poll-voted-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    border-radius: 20px;
    color: #4caf50;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}

.poll-login-prompt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 152, 0, 0.2);
    border: 1px solid rgba(255, 152, 0, 0.5);
    border-radius: 20px;
    color: #ff9800;
    font-size: 14px;
    margin-top: 15px;
}

.poll-login-prompt a {
    color: #00d4ff;
    text-decoration: underline;
}

/* Mobile Responsive for New Features */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-stats {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        flex-direction: column;
    }
    
    .notification-card {
        flex-direction: column;
    }
    
    .poll-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .partner-card {
        padding: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .notification-card {
        padding: 20px;
    }
    
    .poll-card {
        padding: 20px;
    }
    
    .poll-question {
        font-size: 20px;
    }
}

/* ============================================
   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(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.quick-link-card {
    background: rgba(0, 26, 51, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.quick-link-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;
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
    text-decoration: none;
    color: inherit;
}

.quick-link-icon {
    width: 80px;
    height: 80px;
    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.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #00d4ff;
    transition: all 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
    transform: scale(1.1) rotate(5deg);
    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 30px rgba(0, 212, 255, 0.5);
}

.quick-link-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #00d4ff;
}

.quick-link-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive for Quick Links */
@media (max-width: 768px) {
    .quick-links-section {
        padding: 60px 0;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .quick-link-card {
        padding: 25px 20px;
    }
    
    .quick-link-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-link-card {
        padding: 25px 20px;
    }
}
