/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Page Transition Overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}



.page-transition.active {
    transform: translateY(0);
    opacity: 1;
}

/* Transition Content */
.transition-content {
    text-align: center;
    color: #ffffff;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition.active .transition-content {
    opacity: 1;
    transform: scale(1);
}

.transition-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(32, 127, 251, 0.5));
    animation: logoPulse 2s ease-in-out infinite;
}

.transition-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #207ffb;
    text-shadow: 0 0 20px rgba(32, 127, 251, 0.5);
    animation: textGlow 2s ease-in-out infinite;
}

.transition-content p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.8;
    margin: 0;
}

/* Enhanced Slide Animation */
@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in {
    animation: slideInFromBottom 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth page content transition */
body {
    transition: opacity 0.5s ease;
}

body.transitioning {
    opacity: 0.6;
}

.loading-container {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

.loading-logo {
    margin-bottom: 2rem;
}

.loading-logo-img {
    width: 120px;
    height: 120px;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(32, 127, 251, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(32, 127, 251, 0.8));
    }
}

.loading-text h2 {
    color: #207ffb;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(32, 127, 251, 0.5);
    animation: textGlow 2s ease-in-out infinite;
}

.loading-text p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(32, 127, 251, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(32, 127, 251, 0.8);
    }
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #207ffb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: #dc2626;
    animation-delay: 0.2s;
}

.spinner-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-top-color: #207ffb;
    animation-delay: 0.4s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-progress {
    margin-top: 2rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #207ffb, #dc2626);
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(32, 127, 251, 0.5);
}

.progress-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

/* Custom Cursor */
/* Custom cursor from gafcodes.com */
body {
    cursor: url('https://www.gafcodes.com/premade/cursors/jspunkette/cursor8.cur'), default;
}

/* Interactive elements cursor */
a, button, input, textarea, select, .btn, .nav-link, .accordion-header, .filter-btn, .application-card {
    cursor: url('https://www.gafcodes.com/premade/cursors/jspunkette/cursor8.cur'), pointer;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Prevents zoom on iOS */
        overflow-x: hidden;
    }
    
    /* Video background mobile optimization */
    .hero-video {
        object-position: center;
    }
    
    /* Improve touch targets */
    .btn, .filter-btn, .nav-link, .accordion-header {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better scrolling */
    .nav-menu {
        -webkit-overflow-scrolling: touch;
        display: none;
    }
    
    /* Prevent horizontal scroll */
    .container {
        overflow-x: hidden;
    }
    
    /* Improve form inputs on mobile */
    input, textarea, select {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    /* Prevent body scroll when mobile menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styles */
.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-logo {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 120px;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    animation: logo-glow 3s ease-in-out infinite alternate;
}



@keyframes logo-glow {
    0% {
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    }
    100% {
        filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.3));
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo h2 {
    font-family: 'Orbitron', monospace;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    display: inline-block;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    transform: translateY(-1px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* Enhanced Navigation Menu Container */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin-left: auto;
    padding-right: 3rem;
    position: relative;
    right: -2rem;
}

.nav-menu li {
    position: relative;
}

/* Navigation Item Hover Effects */
.nav-menu li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(32, 127, 251, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-menu li:hover::before {
    width: 80px;
    height: 80px;
}

/* Active Navigation Item */
.nav-link.active {
    background: linear-gradient(135deg, rgba(32, 127, 251, 0.15), rgba(255, 107, 53, 0.08));
    border-color: rgba(32, 127, 251, 0.3);
    box-shadow: 0 2px 10px rgba(32, 127, 251, 0.3);
    animation: activePulse 2s ease-in-out infinite alternate;
}

@keyframes activePulse {
    0% {
        box-shadow: 0 2px 10px rgba(32, 127, 251, 0.3);
    }
    100% {
        box-shadow: 0 3px 15px rgba(32, 127, 251, 0.4);
    }
}

/* Navigation Item Scale Animation */
.nav-menu li {
    transition: all 0.3s ease;
}

.nav-menu li:hover {
    transform: scale(1.1);
}

/* Enhanced Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(32, 127, 251, 0.1);
    border-color: rgba(32, 127, 251, 0.3);
    transform: scale(1.05);
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.hamburger:hover .bar {
    background: #207ffb;
    box-shadow: 0 0 10px rgba(32, 127, 251, 0.5);
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: #207ffb;
    box-shadow: 0 0 10px rgba(32, 127, 251, 0.5);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: #207ffb;
    box-shadow: 0 0 10px rgba(32, 127, 251, 0.5);
}

/* Mobile Menu Enhancements */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(26, 78, 138, 0.98) 0%, rgba(32, 127, 251, 0.95) 100%);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(15px);
        padding: 2rem 0;
        gap: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        overflow-y: auto;
        transform: translateX(-100%);
        visibility: hidden;
        opacity: 0;
    }

    .nav-menu.active {
        left: 0;
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    .nav-menu li {
        margin: 0.5rem 0;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(32, 127, 251, 0.2);
        border-color: rgba(32, 127, 251, 0.5);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(32, 127, 251, 0.4);
    }

    .nav-link.active {
        background: linear-gradient(135deg, rgba(32, 127, 251, 0.3), rgba(255, 107, 53, 0.2));
        border-color: rgba(32, 127, 251, 0.6);
        box-shadow: 0 8px 30px rgba(32, 127, 251, 0.5);
        animation: mobileActivePulse 2s ease-in-out infinite alternate;
    }

    @keyframes mobileActivePulse {
        0% {
            box-shadow: 0 8px 30px rgba(32, 127, 251, 0.5);
        }
        100% {
            box-shadow: 0 12px 35px rgba(32, 127, 251, 0.7);
        }
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Home page specific overlay - only for index.html */
body:has(.hero) .hero-overlay::before {
    content: '';
    position: absolute;
    top: -50vh;
    left: -50vw;
    width: 200vw;
    height: 200vh;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(32, 127, 251, 0.5);
    background: linear-gradient(135deg, #ffffff, #207ffb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff6b35;
    font-weight: 600;
}

.hero-slogan {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
    font-style: italic;
}

/* Server Status */
.server-status {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.status-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 127, 251, 0.2);
}

.status-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.status-text {
    font-weight: 600;
    color: #ffffff;
}

.status-text span {
    color: #207ffb;
    font-weight: 700;
}

/* Hero Button Styles */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #207ffb, #1a6fd8);
    box-shadow: 0 4px 15px rgba(32, 127, 251, 0.3);
}

.hero-buttons .btn-secondary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.hero-buttons .btn-primary::before,
.hero-buttons .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-buttons .btn-primary:hover::before,
.hero-buttons .btn-secondary:hover::before {
    left: 100%;
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #1a6fd8, #1557b3);
    box-shadow: 0 8px 25px rgba(32, 127, 251, 0.5);
}

.hero-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

.hero-buttons .btn-primary:active,
.hero-buttons .btn-secondary:active {
    transform: translateY(-1px);
}

/* Discord Button - Purple Gradient */
.btn-discord {
    background: linear-gradient(135deg, #7289da, #5865f2);
    color: white;
    box-shadow: 0 4px 15px rgba(114, 137, 218, 0.4);
}

.btn-discord:hover {
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.6);
}

/* Join Now Button - Orange Gradient */
.btn-join {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-join:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Apply Now Button - Green Gradient */
.btn-apply {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.btn-apply:hover {
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
}

/* View Rules Button - Blue Gradient */
.btn-rules {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.btn-rules:hover {
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.6);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #0f0f0f;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(32, 127, 251, 0.4), 0 15px 35px rgba(220, 38, 38, 0.4);
    border-color: #207ffb;
    background: linear-gradient(135deg, rgba(32, 127, 251, 0.05), rgba(220, 38, 38, 0.05));
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 10px rgba(32, 127, 251, 0.3);
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    color: #207ffb;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(26, 78, 138, 0.9);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #207ffb;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #207ffb;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #207ffb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: #cccccc;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex !important;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(26, 78, 138, 0.98) 0%, rgba(32, 127, 251, 0.95) 100%);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        backdrop-filter: blur(15px);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-logo {
        gap: 8px;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 30px;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-slogan {
        text-align: center;
        padding: 0 1rem;
    }

    .server-status {
        flex-direction: column;
        gap: 1rem;
        margin: 1rem 0;
    }

    .status-item {
        padding: 0.75rem 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        padding: 1rem;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .team-card {
        padding: 1.5rem;
    }

    /* Mission Section */
    .mission-content {
        padding: 2rem 1rem;
    }

    .mission-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Rules Section */
    .rules-intro {
        padding: 2rem 1rem;
    }

    .accordion-header h3 {
        font-size: 1.1rem;
        padding-right: 2rem;
    }

    /* Application Types */
    .application-types {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .type-card {
        padding: 1.5rem;
    }

    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Page Hero */
    .page-hero {
        height: 50vh;
    }

    .hero-logo-img {
        height: 80px;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .category-title {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .nav-container {
        padding: 0 15px;
    }

    .nav-logo {
        gap: 6px;
    }

    .nav-logo h2 {
        font-size: 1rem;
    }

    .logo-img {
        height: 25px;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .hero-slogan {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
        min-width: 200px;
    }

    /* Features */
    .feature-card {
        padding: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Team Cards */
    .team-card {
        padding: 1.25rem;
    }

    .team-card h3 {
        font-size: 1.2rem;
    }

    .team-role {
        font-size: 0.9rem;
    }

    .team-description {
        font-size: 0.85rem;
    }

    /* Application Types */
    .type-card {
        padding: 1.25rem;
    }

    .type-card h3 {
        font-size: 1.2rem;
    }

    .type-card p {
        font-size: 0.9rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.75rem;
    }

    .category-title {
        font-size: 1.3rem;
    }

    /* Container */
    .container {
        padding: 0 10px;
    }

    /* Page Hero */
    .page-hero {
        height: 40vh;
    }

    .hero-logo-img {
        height: 60px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons .btn {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        min-width: 180px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 8px;
    }
}

/* Page Hero Section */
.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 78, 138, 0.8), rgba(26, 78, 138, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><rect width="100%" height="100%" fill="%230a0a0a"/><circle cx="200" cy="150" r="50" fill="%23207ffb" opacity="0.1"/><circle cx="800" cy="450" r="80" fill="%23207ffb" opacity="0.1"/><circle cx="600" cy="100" r="30" fill="%23207ffb" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
}

/* Enhanced Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #207ffb;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 0 0 20px rgba(32, 127, 251, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.team-category {
    margin-bottom: 4rem;
}

.category-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #207ffb;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 0 0 15px rgba(32, 127, 251, 0.3);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #207ffb, #1a4e8a);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(32, 127, 251, 0.4);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

/* Center developers section specifically */
.developers-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.developers-grid .team-card {
    max-width: 300px;
}

/* Team Cards */
.team-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(32, 127, 251, 0.1), transparent);
    transition: left 0.5s ease;
}

.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(32, 127, 251, 0.4), 0 15px 35px rgba(220, 38, 38, 0.4);
    border-color: #207ffb;
    background: linear-gradient(135deg, rgba(32, 127, 251, 0.05), rgba(220, 38, 38, 0.05));
}

.team-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.team-card h3 {
    font-family: 'Orbitron', monospace;
    color: #207ffb;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.team-role {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.team-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(32, 127, 251, 0.02));
}

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

.mission-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #207ffb;
    margin-bottom: 2rem;
}

.mission-content > p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Value Items */
.value-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(32, 127, 251, 0.3), 0 10px 25px rgba(220, 38, 38, 0.3);
    border-color: #207ffb;
    background: linear-gradient(135deg, rgba(32, 127, 251, 0.1), rgba(220, 38, 38, 0.1));
}

.value-item h3 {
    font-family: 'Orbitron', monospace;
    color: #207ffb;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value-item h3::before {
    font-size: 1.5rem;
}

.value-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Rules Section */
.rules-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.rules-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.rules-intro h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #207ffb;
    margin-bottom: 1rem;
}

.rules-intro p {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.rules-accordion {
    max-width: 900px;
    margin: 0 auto;
}

/* Accordion Styles */
.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(32, 127, 251, 0.3);
    box-shadow: 0 4px 15px rgba(32, 127, 251, 0.1);
}

.accordion-header {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    user-select: none;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.08);
}

.accordion-header h3 {
    margin: 0;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    pointer-events: none;
}

.accordion-icon {
    font-size: 1.5rem;
    color: #207ffb;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 20px;
    text-align: center;
    pointer-events: none;
}

.accordion-item.active .accordion-icon {
    color: #ff6b35;
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    opacity: 0;
}

.accordion-item.active .accordion-content {
    padding: 1.5rem;
    max-height: none;
    opacity: 1;
}

.accordion-content ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #cccccc;
    line-height: 1.6;
}

.accordion-content li {
    margin-bottom: 0.5rem;
}

.accordion-content strong {
    color: #207ffb;
    font-weight: 600;
}

.rules-footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.rules-footer h3 {
    font-family: 'Orbitron', monospace;
    color: #207ffb;
    margin-bottom: 1rem;
}

.rules-footer p {
    color: #cccccc;
    line-height: 1.6;
}

/* Application Section */
.application-section {
    padding: 7rem 0 5rem 0;
    background: #0f0f0f;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #207ffb;
    margin-bottom: 1rem;
}

.form-intro p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Form Sections */
.form-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.form-section h3 {
    font-family: 'Orbitron', monospace;
    color: #207ffb;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.contact-form select:focus {
    border-color: #207ffb;
    box-shadow: 0 0 15px rgba(32, 127, 251, 0.3);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

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

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #ff6b35;
    font-size: 0.9rem;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-label:hover {
    border-color: #207ffb;
    background: rgba(32, 127, 251, 0.1);
}

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

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #207ffb;
    background: #207ffb;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

/* Enhanced Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #207ffb, #1a4e8a);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(32, 127, 251, 0.3);
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(32, 127, 251, 0.4);
    background: linear-gradient(135deg, #1a4e8a, #207ffb);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff6b35;
    box-shadow: 0 0 5px rgba(244, 67, 54, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-info h3 {
    font-family: 'Orbitron', monospace;
    color: #207ffb;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Contact Methods */
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(32, 127, 251, 0.1);
    border-color: #207ffb;
    background: rgba(255, 255, 255, 0.05);
}

.contact-icon {
    font-size: 2rem;
    color: #207ffb;
}

.contact-details h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #cccccc;
    margin: 0;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form select option {
    background: #1a1a1a;
    color: #ffffff;
}

/* Discord Widget Section */
.discord-widget-section {
    text-align: center;
    margin: 4rem 0;
}

.discord-widget-section h2 {
    font-family: 'Orbitron', monospace;
    color: #207ffb;
    margin-bottom: 1rem;
}

.discord-widget-section p {
    color: #cccccc;
    margin-bottom: 2rem;
}

.discord-widget {
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.discord-widget iframe {
    border: none;
    border-radius: 15px;
}

.discord-widget-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 500px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(32, 127, 251, 0.3);
    border-top: 3px solid #207ffb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.discord-widget-loading p {
    color: #cccccc;
    font-size: 0.9rem;
}

.discord-fallback {
    height: 500px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-fallback-content {
    text-align: center;
    padding: 2rem;
}

.discord-fallback-content .discord-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.discord-fallback-content h3 {
    font-family: 'Orbitron', monospace;
    color: #207ffb;
    margin-bottom: 1rem;
}

.discord-fallback-content p {
    color: #cccccc;
    margin-bottom: 2rem;
}

/* Map Section */
.map-section {
    margin: 4rem 0;
}

.map-section h2 {
    font-family: 'Orbitron', monospace;
    color: #207ffb;
    text-align: center;
    margin-bottom: 1rem;
}

.map-section p {
    color: #cccccc;
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Map Section */
.map-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(32, 127, 251, 0.02));
    border-radius: 15px;
    border: 1px solid rgba(32, 127, 251, 0.3);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.map-placeholder::before {
    content: '🗺️';
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.map-content h3 {
    font-family: 'Orbitron', monospace;
    color: #207ffb;
    margin-bottom: 1rem;
}

.map-content p {
    color: #cccccc;
    margin-bottom: 2rem;
}

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

/* Map Features */
.map-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.map-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 127, 251, 0.2);
    border-color: #207ffb;
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 1.5rem;
    color: #207ffb;
}

.map-feature span:last-child {
    color: #ffffff;
    font-weight: 500;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Gallery Filters */
.filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(32, 127, 251, 0.1);
    border-color: #207ffb;
    box-shadow: 0 5px 15px rgba(32, 127, 251, 0.3);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Gallery Items */
.gallery-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(32, 127, 251, 0.2);
    border-color: #207ffb;
}

.gallery-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
    color: #207ffb;
}

.gallery-overlay p {
    color: #cccccc;
    font-size: 0.9rem;
}

.gallery-info {
    text-align: center;
    margin-top: 4rem;
}

.gallery-info h2 {
    font-family: 'Orbitron', monospace;
    color: #207ffb;
    margin-bottom: 1rem;
}

.gallery-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Box System - Keep the modern box system but enhance it */
.box-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.box-option {
    position: relative;
    cursor: pointer;
    display: block;
}

.box-option input[type="radio"],
.box-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Box System */
.box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 100px;
    backdrop-filter: blur(10px);
}

.box-option:hover .box-content {
    border-color: #207ffb;
    background: linear-gradient(135deg, rgba(32, 127, 251, 0.05), rgba(220, 38, 38, 0.05));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 127, 251, 0.2), 0 5px 15px rgba(220, 38, 38, 0.2);
}

.box-option input[type="radio"]:checked + .box-content,
.box-option input[type="checkbox"]:checked + .box-content,
.box-content.selected {
    border-color: #207ffb;
    background: linear-gradient(135deg, rgba(32, 127, 251, 0.1), rgba(220, 38, 38, 0.1));
    box-shadow: 0 0 20px rgba(32, 127, 251, 0.3), 0 0 20px rgba(220, 38, 38, 0.3);
    transform: translateY(-3px);
}

.box-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.box-text {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Responsive Design for Box System */
@media (max-width: 768px) {
    .box-group {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .box-content {
        padding: 1rem 0.75rem;
        min-height: 80px;
    }
    
    .box-icon {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .box-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .box-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .box-content {
        padding: 0.75rem 0.5rem;
        min-height: 70px;
    }
    
    .box-icon {
        font-size: 1.25rem;
    }
    
    .box-text {
        font-size: 0.75rem;
    }
} 

/* Enhanced Glow Effects */
.btn-primary {
    background: linear-gradient(135deg, #207ffb, #60a5fa);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(32, 127, 251, 0.3);
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #207ffb);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(32, 127, 251, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 10px 25px rgba(32, 127, 251, 0.3);
}

/* Special Apply Now Button Styling */
.btn-apply-now {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3) !important;
    font-size: 1.25rem !important;
    padding: 1.5rem 3rem !important;
    border-radius: 1rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    position: relative !important;
    overflow: hidden !important;
    animation: pulse-glow 2s ease-in-out infinite alternate !important;
    color: white !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 60px !important;
    width: 100% !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

.btn-apply-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.btn-apply-now:hover::before {
    left: 100%;
}

.btn-apply-now:hover {
    background: linear-gradient(135deg, #e55a2b, #ff6b35) !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 20px 45px rgba(255, 107, 53, 0.5) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    color: white !important;
    text-decoration: none !important;
}

.btn-apply-now:active {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4) !important;
}

/* Override any conflicting button styles for Apply Now buttons */
.type-card .btn-apply-now {
    margin-top: auto !important;
    flex-shrink: 0 !important;
}

/* Disabled state for application buttons */
.btn-apply-now.disabled {
    background: linear-gradient(135deg, #6b7280, #4b5563) !important;
    color: #d1d5db !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    animation: none !important;
    box-shadow: none !important;
}

.btn-apply-now.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
    background: linear-gradient(135deg, #6b7280, #4b5563) !important;
}

.btn-apply-now.disabled::before {
    display: none !important;
}

/* Ensure type cards have proper flex layout */
.type-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    justify-content: space-between !important;
}

.type-card:hover {
    transform: translateY(-5px);
    border-color: rgba(32, 127, 251, 0.5);
    box-shadow: 0 8px 25px rgba(32, 127, 251, 0.4), 0 8px 25px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, rgba(32, 127, 251, 0.05), rgba(220, 38, 38, 0.05));
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    flex-shrink: 0;
}

.type-card h3 {
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.type-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.type-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto !important;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    }
    100% {
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    }
}

/* Enhanced Navigation */
.navbar {
    background: #000000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
    color: #207ffb;
    text-shadow: 0 0 10px rgba(32, 127, 251, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #207ffb, #1a4e8a);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(32, 127, 251, 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Enhanced Category Titles */
.category-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #207ffb;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 0 0 15px rgba(32, 127, 251, 0.3);
}

/* Enhanced Responsive Design for Forms */
@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-section {
        padding: 1.25rem;
    }
    
    .form-intro {
        padding: 1.5rem 1rem;
    }
    
    .form-intro h2 {
        font-size: 1.8rem;
    }
    
    .form-intro p {
        font-size: 0.95rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .radio-group {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .radio-custom {
        width: 20px;
        height: 20px;
    }
    
    .radio-custom::after {
        width: 8px;
        height: 8px;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .form-message {
        margin: 1rem 0.5rem;
        padding: 1rem;
    }
    
    .form-message .message-content {
        font-size: 0.9rem;
    }
    
    /* Application Form Specific Mobile Styles */
    .application-section {
        padding: 1rem 0;
    }
    
    .application-section .form-container {
        padding: 1.25rem;
        margin: 0 0.5rem;
    }
    
    .application-section .form-container h2 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .application-section .form-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .application-section .form-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .application-section .form-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .application-section .form-group {
        margin-bottom: 1rem;
    }
    
    .application-section .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .application-section .form-group input,
    .application-section .form-group textarea {
        padding: 0.75rem;
        font-size: 0.85rem;
        min-height: 44px;
    }
    
    .application-section .form-group textarea {
        min-height: 80px;
        resize: vertical;
    }
    
    .application-section .form-group small {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }
    
    .application-section .box-group {
        gap: 0.5rem;
        grid-template-columns: 1fr;
    }
    
    .application-section .box-content {
        padding: 0.75rem;
        min-height: 44px;
    }
    
    .application-section .box-icon {
        font-size: 1.2rem;
    }
    
    .application-section .box-text {
        font-size: 0.85rem;
    }
    
    .application-section .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }
    
    .application-section .form-actions {
        text-align: center;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 1rem;
        margin: 0 0.25rem;
    }
    
    .form-section {
        padding: 1rem;
    }
    
    .form-intro {
        padding: 1.25rem 0.75rem;
    }
    
    .form-intro h2 {
        font-size: 1.5rem;
    }
    
    .form-intro p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .radio-group {
        gap: 0.5rem;
    }
    
    .radio-custom {
        width: 18px;
        height: 18px;
    }
    
    .radio-custom::after {
        width: 6px;
        height: 6px;
    }
    
    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .form-message {
        margin: 0.75rem 0.25rem;
        padding: 0.875rem;
    }
    
    .form-message .message-content {
        font-size: 0.85rem;
    }
    
    /* Application Form Specific Mobile Styles - Small Screens */
    .application-section {
        padding: 0.5rem 0;
    }
    
    .application-section .form-container {
        padding: 1rem;
        margin: 0 0.25rem;
    }
    
    .application-section .form-container h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .application-section .form-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .application-section .form-section {
        padding: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .application-section .form-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.875rem;
    }
    
    .application-section .form-group {
        margin-bottom: 0.875rem;
    }
    
    .application-section .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.375rem;
    }
    
    .application-section .form-group input,
    .application-section .form-group textarea {
        padding: 0.625rem;
        font-size: 0.8rem;
        min-height: 40px;
    }
    
    .application-section .form-group textarea {
        min-height: 70px;
    }
    
    .application-section .form-group small {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }
    
    .application-section .box-group {
        gap: 0.375rem;
        grid-template-columns: 1fr;
    }
    
    .application-section .box-content {
        padding: 0.625rem;
        min-height: 40px;
    }
    
    .application-section .box-icon {
        font-size: 1.1rem;
    }
    
    .application-section .box-text {
        font-size: 0.8rem;
    }
    
    .application-section .submit-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }
    
    .application-section .form-actions {
        margin-top: 1.5rem;
    }
}

/* Enhanced Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-method {
        padding: 1.25rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 1.25rem;
    }
    
    .contact-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .discord-widget-section {
        padding: 2rem 1rem;
    }
    
    .discord-widget-section h2 {
        font-size: 1.8rem;
    }
    
    .discord-widget-section p {
        font-size: 0.95rem;
    }
    
    .discord-widget iframe {
        width: 100%;
        max-width: 350px;
        height: 400px;
    }
    
    .discord-widget-loading {
        height: 400px;
    }
    
    .discord-fallback {
        height: 400px;
    }
    
    .discord-fallback-content {
        padding: 1.5rem;
    }
    
    .discord-fallback-content .discord-icon {
        font-size: 2.5rem;
    }
    
    .discord-fallback-content h3 {
        font-size: 1.2rem;
    }
    
    .discord-fallback-content p {
        font-size: 0.9rem;
    }
    
    .map-section {
        padding: 2rem 1rem;
    }
    
    .map-section h2 {
        font-size: 1.8rem;
    }
    
    .map-section p {
        font-size: 0.95rem;
    }
    
    .map-placeholder {
        padding: 1.5rem;
        min-height: 300px;
    }
    
    .map-content h3 {
        font-size: 1.2rem;
    }
    
    .map-content p {
        font-size: 0.9rem;
    }
    
    .map-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .map-feature {
        padding: 1rem;
    }
    
    .map-feature span:last-child {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .contact-info {
        padding: 1.25rem;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .contact-details h3 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .contact-form-container {
        padding: 1.25rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .contact-actions .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .discord-widget-section {
        padding: 1.5rem 0.75rem;
    }
    
    .discord-widget-section h2 {
        font-size: 1.5rem;
    }
    
    .discord-widget-section p {
        font-size: 0.9rem;
    }
    
    .discord-widget iframe {
        height: 350px;
    }
    
    .map-section {
        padding: 1.5rem 0.75rem;
    }
    
    .map-section h2 {
        font-size: 1.5rem;
    }
    
    .map-section p {
        font-size: 0.9rem;
    }
    
    .map-placeholder {
        padding: 1.25rem;
        min-height: 250px;
    }
    
    .map-content h3 {
        font-size: 1.1rem;
    }
    
    .map-content p {
        font-size: 0.85rem;
    }
    
    .map-feature {
        padding: 0.875rem;
    }
    
    .map-feature span:last-child {
        font-size: 0.85rem;
    }
}

/* Enhanced Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-section {
        padding: 2rem 1rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        min-width: 80px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .gallery-item {
        border-radius: 12px;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .gallery-info {
        padding: 2rem 1rem;
    }
    
    .gallery-info h2 {
        font-size: 1.8rem;
    }
    
    .gallery-info p {
        font-size: 0.95rem;
    }
    
    .gallery-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .gallery-actions .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 1.5rem 0.75rem;
    }
    
    .gallery-filters {
        gap: 0.375rem;
    }
    
    .filter-btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
        min-width: 70px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
        padding: 0 0.25rem;
    }
    
    .gallery-overlay {
        padding: 1.25rem 0.875rem 0.875rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .gallery-info {
        padding: 1.5rem 0.75rem;
    }
    
    .gallery-info h2 {
        font-size: 1.5rem;
    }
    
    .gallery-info p {
        font-size: 0.9rem;
    }
    
    .gallery-actions .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    /* Application Form Specific Mobile Styles - Extra Small Screens */
    .application-section {
        padding: 0.25rem 0;
    }
    
    .application-section .form-container {
        padding: 0.75rem;
        margin: 0 0.125rem;
    }
    
    .application-section .form-container h2 {
        font-size: 1.2rem;
        margin-bottom: 0.375rem;
    }
    
    .application-section .form-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .application-section .form-section {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .application-section .form-section h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .application-section .form-group {
        margin-bottom: 0.75rem;
    }
    
    .application-section .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .application-section .form-group input,
    .application-section .form-group textarea {
        padding: 0.5rem;
        font-size: 0.75rem;
        min-height: 36px;
    }
    
    .application-section .form-group textarea {
        min-height: 60px;
    }
    
    .application-section .form-group small {
        font-size: 0.65rem;
        margin-top: 0.125rem;
    }
    
    .application-section .box-group {
        gap: 0.25rem;
        grid-template-columns: 1fr;
    }
    
    .application-section .box-content {
        padding: 0.5rem;
        min-height: 36px;
    }
    
    .application-section .box-icon {
        font-size: 1rem;
    }
    
    .application-section .box-text {
        font-size: 0.75rem;
    }
    
    .application-section .submit-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 180px;
    }
    
    .application-section .form-actions {
        margin-top: 1.25rem;
    }
}

/* Enhanced Box System Responsive Design */
@media (max-width: 768px) {
    .box-group {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .box-content {
        padding: 1.25rem 1rem;
        min-height: 90px;
        border-radius: 12px;
    }

    .box-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .box-text {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .box-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.25rem;
    }

    .box-content {
        padding: 1rem 0.75rem;
        min-height: 80px;
        border-radius: 10px;
    }

    .box-icon {
        font-size: 1.5rem;
        margin-bottom: 0.375rem;
    }

    .box-text {
        font-size: 0.85rem;
        line-height: 1.2;
    }
}

@media (max-width: 360px) {
    .box-group {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .box-content {
        padding: 0.875rem 0.625rem;
        min-height: 70px;
    }

    .box-icon {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .box-text {
        font-size: 0.8rem;
    }
} 

/* Button Icons */
.btn i {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.btn-primary i {
    color: #ffffff;
}

.btn-secondary i {
    color: #ffffff;
}

.btn-outline i {
    color: #ffffff;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Enhanced Status Icons */
.status-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Feature Icons */
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 10px rgba(32, 127, 251, 0.3);
}

/* Value Item Icons */
.value-item h3 {
    font-family: 'Orbitron', monospace;
    color: #207ffb;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value-item h3::before {
    font-size: 1.5rem;
} 

/* Regular Button Styles (for other pages) */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #207ffb;
    color: #ffffff;
    border: 2px solid #207ffb;
}

.btn-primary:hover {
    background: #1a6fd8;
    border-color: #1a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 127, 251, 0.3);
}

.btn-secondary {
    background: #ff6b35;
    color: #ffffff;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-2px);
} 

/* Team Avatar Images */
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(32, 127, 251, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(32, 127, 251, 0.3);
    transition: all 0.3s ease;
}

.team-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(32, 127, 251, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(32, 127, 251, 0.3);
}

.team-card:hover .team-image {
    border-color: #207ffb;
    box-shadow: 0 0 20px rgba(32, 127, 251, 0.5);
} 

/* Application Types */
.application-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.type-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.type-card:hover {
    transform: translateY(-5px);
    border-color: rgba(32, 127, 251, 0.3);
    box-shadow: 0 8px 25px rgba(32, 127, 251, 0.2);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.type-card h3 {
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.type-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.type-card .btn {
    width: 100%;
    justify-content: center;
}

/* Application Intro */
.application-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.application-intro h2 {
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.application-intro p {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Messages */
.form-message {
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4caf50;
    color: #4caf50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
    color: #f44336;
}

.form-message .message-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message i {
    font-size: 1.2rem;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
} 

.discord-widget iframe {
    height: 350px;
}

.discord-widget-loading {
    height: 350px;
}

.discord-fallback {
    height: 350px;
}

.discord-fallback-content {
    padding: 1rem;
}

.discord-fallback-content .discord-icon {
    font-size: 2rem;
}

.discord-fallback-content h3 {
    font-size: 1.1rem;
}

.discord-fallback-content p {
    font-size: 0.85rem;
}

/* Floating Discord Button */
.discord-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.discord-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discord-float .discord-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.discord-float a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.discord-float a:hover::before {
    left: 100%;
}

.discord-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
    background: linear-gradient(135deg, #7289DA 0%, #5865F2 100%);
}

.discord-float a:active {
    transform: scale(0.95);
}

/* Discord tooltip */
.discord-float::after {
    content: 'Join Discord';
    position: absolute;
    right: 70px;
    bottom: 50%;
    transform: translateY(50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.discord-float::before {
    content: '';
    position: absolute;
    right: 65px;
    bottom: 50%;
    transform: translateY(50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.discord-float:hover::after,
.discord-float:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .discord-float {
        right: 15px;
        bottom: 20px;
    }
    
    .discord-float a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .discord-float::after {
        right: 60px;
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .discord-float::before {
        right: 55px;
    }
}

/* Animation for the Discord button */
@keyframes discord-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    }
}

.discord-float a {
    animation: discord-pulse 2s ease-in-out infinite;
}

.discord-float a:hover {
    animation: none;
}

/* Application Grid Styles */
.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.application-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 127, 251, 0.1), rgba(220, 38, 38, 0.1));
    border-radius: 20px;
    z-index: -1;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(32, 127, 251, 0.5);
}

.application-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.application-card h3 {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.application-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-apply-now {
    display: inline-block;
    background: linear-gradient(135deg, #207ffb, #1a6fd8);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-apply-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 127, 251, 0.4);
}

/* Remove admin-related styles */
.admin-login-container,
.admin-dashboard,
.admin-login-box,
.admin-access-container,
.admin-access-box {
    display: none !important;
}

/* Remove application state management styles */
.application-card.disabled {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.application-card.disabled .btn-apply-now {
    background: linear-gradient(135deg, #207ffb, #1a6fd8) !important;
    color: white !important;
}

/* Requirements Box */
.requirements-box {
    background: linear-gradient(135deg, rgba(26, 78, 138, 0.1) 0%, rgba(32, 127, 251, 0.1) 100%);
    border: 1px solid rgba(32, 127, 251, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.requirements-box h4 {
    color: #207ffb;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.requirements-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-box li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(32, 127, 251, 0.1);
    font-size: 0.95rem;
    line-height: 1.4;
}

.requirements-box li:last-child {
    border-bottom: none;
}

.requirements-box li strong {
    color: #207ffb;
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    position: relative;
    padding-left: 35px;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #207ffb;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-label:hover input ~ .checkmark {
    background-color: rgba(32, 127, 251, 0.1);
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #207ffb;
    border-color: #207ffb;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

/* Paused Message Styling */
.paused-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(32, 127, 251, 0.05), rgba(220, 38, 38, 0.05));
    border: 1px solid rgba(32, 127, 251, 0.2);
    border-radius: 15px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.paused-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.paused-message h3 {
    font-family: 'Orbitron', monospace;
    color: #207ffb;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.paused-message p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.paused-message .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #207ffb, #1a4e8a);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(32, 127, 251, 0.3);
}

.paused-message .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 127, 251, 0.4);
    background: linear-gradient(135deg, #1a4e8a, #207ffb);
}

.paused-message .btn-text {
    font-weight: 600;
}

.paused-message .btn-icon {
    font-size: 1.2rem;
}