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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-links {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ffea;
    background: rgba(0, 255, 234, 0.1);
    text-shadow: 0 0 8px rgba(0, 255, 234, 0.6);
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffea;
    text-shadow: 0 0 8px rgba(0, 255, 234, 0.4);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        text-shadow: 0 0 8px rgba(0, 255, 234, 0.4);
    }
    100% {
        text-shadow: 0 0 12px rgba(0, 255, 234, 0.6);
    }
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Login Button */
.login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #5865f2;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #4752c4;
    transform: translateY(-1px);
}

/* User Profile */
.user-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.user-profile:hover {
    background: rgba(0, 255, 234, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00ffea;
}

.profile-arrow {
    color: #00ffea;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.user-profile.active .profile-arrow {
    transform: rotate(180deg);
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 0.2rem);
    right: 0;
    z-index: 1001;
}

.user-dropdown .dropdown-menu {
    background: #1a1a1a;
    border: 1px solid #00ffea;
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 255, 234, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.user-dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 255, 234, 0.1);
}

.user-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.user-dropdown .dropdown-item:hover {
    background: rgba(0, 255, 234, 0.1);
    color: #00ffea;
    text-shadow: 0 0 8px rgba(0, 255, 234, 0.6);
}

.user-dropdown .dropdown-item i {
    width: 16px;
    text-align: center;
    color: #00ffea;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ffea, transparent);
    margin: 0.5rem 0;
}

/* Applications styles will be added later */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 70px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.7), rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: white;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
    padding: 3rem 0;
    background: #000000;
}

.welcome-section {
    text-align: center;
    margin-bottom: 3rem;
}

.welcome-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ffea, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-section p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Quick Info Cards */
.quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: #111111;
    border: 1px solid #00ffea;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 255, 234, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 234, 0.4), 0 0 30px rgba(0, 255, 234, 0.3);
    border-color: #ffffff;
    background: #1a1a1a;
}

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

.info-card:hover .info-icon {
    animation: iconPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 255, 234, 0.6);
}

.info-card:hover h3 {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.8);
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ffea, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #000000;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #00ffea;
}

.info-card p {
    color: #cccccc;
    font-size: 0.95rem;
}

/* Chain of Command Page Styles */
.coc-header {
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.8), rgba(0, 0, 0, 0.9));
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
}

.coc-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 234, 0.8);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.coc-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    opacity: 0.9;
}

.coc-content {
    padding: 4rem 0;
    background: #000000;
}

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

.rank-card {
    background: #111111;
    border: 2px solid #00ffea;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.rank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 234, 0.4);
    border-color: #ffffff;
}

.rank-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 234, 0.1), rgba(0, 0, 0, 0.2));
}

.rank-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffea, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #000000;
    flex-shrink: 0;
}

.rank-card h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #00ffea;
    margin: 0;
    flex-grow: 1;
    margin-left: 1rem;
}

.rank-arrow {
    color: #00ffea;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.rank-card.active .rank-arrow {
    transform: rotate(180deg);
}

.rank-description {
    padding: 0 1.5rem 1.5rem;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sub-ranks {
    border-top: 1px solid rgba(0, 255, 234, 0.2);
    background: rgba(0, 255, 234, 0.05);
    padding: 1rem 1.5rem;
    display: none;
}

.rank-card.active .sub-ranks {
    display: block;
    animation: slideDown 0.3s ease;
}

.sub-rank-item {
    padding: 0.75rem 0;
    color: #ffffff;
    border-bottom: 1px solid rgba(0, 255, 234, 0.1);
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sub-rank-item:last-child {
    border-bottom: none;
}

.sub-rank-item:hover {
    background: rgba(0, 255, 234, 0.1);
    padding-left: 2.5rem;
    color: #00ffea;
    text-shadow: 0 0 8px rgba(0, 255, 234, 0.6);
}

/* Rank Level Styling */
.sub-rank-item.highest {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.05rem;
}

.sub-rank-item.highest::before {
    content: "★";
    color: #ffd700;
    position: absolute;
    left: 0.5rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.sub-rank-item.high {
    color: #00ffea;
    font-weight: 600;
}

.sub-rank-item.high::before {
    content: "◆";
    color: #00ffea;
    position: absolute;
    left: 0.5rem;
    font-weight: bold;
}

.sub-rank-item.medium {
    color: #ffffff;
    font-weight: 500;
}

.sub-rank-item.medium::before {
    content: "●";
    color: #00ffea;
    position: absolute;
    left: 0.5rem;
    font-weight: bold;
}

.sub-rank-item:not(.highest):not(.high):not(.medium)::before {
    content: "▸";
    color: #cccccc;
    position: absolute;
    left: 0.5rem;
    font-weight: bold;
}

/* Hover effects for different rank levels */
.sub-rank-item.highest:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.sub-rank-item.high:hover {
    background: rgba(0, 255, 234, 0.15);
    color: #00ffea;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.8);
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
    }
}

/* Applications Page Styles */
.app-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 255, 234, 0.1));
    padding: 6rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 234, 0.3);
}

.app-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ffea, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 255, 234, 0.3);
}

.app-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.app-content {
    padding: 4rem 0;
    background: #000000;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.application-card {
    background: #111111;
    border: 1px solid #00ffea;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 255, 234, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 234, 0.3);
    border-color: #ffffff;
}

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

.app-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.app-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ffea, #ffffff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000000;
    flex-shrink: 0;
}

.app-info h2 {
    color: #00ffea;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.app-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.completion-time {
    color: #cccccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.completion-time i {
    color: #00ffea;
}

.app-status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

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

.app-status.closed {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.app-description {
    margin-bottom: 2rem;
}

.app-description h3 {
    color: #00ffea;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.app-description p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.app-description ul {
    color: #cccccc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.app-description li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.app-description li strong {
    color: #00ffea;
}

.requirements {
    background: rgba(0, 255, 234, 0.05);
    border: 1px solid rgba(0, 255, 234, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.requirements h4 {
    color: #00ffea;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.app-actions {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 234, 0.2);
}

.start-btn {
    background: linear-gradient(135deg, #00ffea, #ffffff);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 234, 0.4);
    background: linear-gradient(135deg, #ffffff, #00ffea);
}

.start-btn:active {
    transform: translateY(0);
}

/* Departments Page Styles */
.dept-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 255, 234, 0.1));
    padding: 6rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 234, 0.3);
}

.dept-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ffea, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 255, 234, 0.3);
}

.dept-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.dept-content {
    padding: 4rem 0;
    background: #000000;
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.department-card {
    background: #111111;
    border: 1px solid #00ffea;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 255, 234, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.department-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 255, 234, 0.3);
    border-color: #ffffff;
}

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

.dept-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.dept-logo-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dept-logo-icon i {
    font-size: 2rem;
    color: #ffffff;
    z-index: 2;
}

.dept-logo-icon span {
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Department-specific styling */
.fhp-logo {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.mpd-logo {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.mdfr-logo {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.mdcomm-logo {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.mdpd-logo {
    background: linear-gradient(135deg, #92400e, #d97706);
    box-shadow: 0 4px 15px rgba(146, 64, 14, 0.3);
}

/* Hover effects for department logos */
.department-card:hover .dept-logo-icon {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 8px 25px rgba(0, 255, 234, 0.4);
}

.department-card:hover .fhp-logo {
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.5);
}

.department-card:hover .mpd-logo {
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.5);
}

.department-card:hover .mdfr-logo {
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

.department-card:hover .mdcomm-logo {
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.5);
}

.department-card:hover .mdpd-logo {
    box-shadow: 0 8px 25px rgba(146, 64, 14, 0.5);
}

.dept-info {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.dept-info h2 {
    color: #00ffea;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.dept-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
}

.dept-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 255, 234, 0.05);
    border: 1px solid rgba(0, 255, 234, 0.2);
    border-radius: 8px;
    min-width: 90px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(0, 255, 234, 0.1);
    transform: translateY(-2px);
}

.stat i {
    color: #00ffea;
    font-size: 1.2rem;
}

.stat span {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.dept-actions {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 234, 0.2);
}

.join-btn {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: #ffffff;
    text-decoration: none;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.4);
    background: linear-gradient(135deg, #7289DA, #5865F2);
}

.join-btn:active {
    transform: translateY(0);
}

.join-btn i {
    font-size: 1.1rem;
}

/* Responsive adjustments for departments */
@media (max-width: 768px) {
    .dept-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dept-title {
        font-size: 2rem;
    }
    
    .dept-stats {
        gap: 0.5rem;
    }
    
    .stat {
        min-width: 80px;
        padding: 0.5rem;
    }
}

/* Staff Panel Styles */
.staff-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 255, 234, 0.1));
    padding: 6rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 234, 0.3);
}

.staff-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ffea, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 255, 234, 0.3);
}

.staff-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.staff-content {
    padding: 4rem 0;
    background: #000000;
    min-height: 60vh;
}

/* Access Denied */
.access-denied {
    padding: 4rem 0;
    background: #000000;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.denied-card {
    background: #111111;
    border: 1px solid #dc2626;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.denied-icon {
    font-size: 4rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.denied-card h2 {
    color: #dc2626;
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.back-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

/* Staff Navigation */
.staff-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.staff-nav-btn {
    background: #111111;
    border: 1px solid #00ffea;
    color: #00ffea;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.staff-nav-btn:hover {
    background: rgba(0, 255, 234, 0.1);
    transform: translateY(-2px);
}

.staff-nav-btn.active {
    background: #00ffea;
    color: #000000;
    box-shadow: 0 5px 15px rgba(0, 255, 234, 0.3);
}

/* Staff Tabs */
.staff-tab {
    display: none;
}

.staff-tab.active {
    display: block;
}

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-header h2 {
    color: #00ffea;
    font-size: 1.8rem;
    margin: 0;
}

.tab-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.refresh-btn {
    background: linear-gradient(135deg, #00ffea, #ffffff);
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 234, 0.3);
}

.filter-select, .search-input {
    background: #111111;
    border: 1px solid #00ffea;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.filter-select:focus, .search-input:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 255, 234, 0.3);
}

/* Applications List */
.applications-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.application-item {
    background: #111111;
    border: 1px solid #00ffea;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.application-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 234, 0.2);
    border-color: #ffffff;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.app-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00ffea;
}

.app-user-info h4 {
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.app-date {
    color: #cccccc;
    font-size: 0.9rem;
}

.app-status {
    display: flex;
    align-items: center;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

.app-status.approved .status-badge {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.app-status.denied .status-badge {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.app-content h5 {
    color: #00ffea;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.app-content p {
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

.app-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.view-btn, .approve-btn, .deny-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.view-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: #ffffff;
}

.approve-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
}

.deny-btn {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: #ffffff;
}

.view-btn:hover, .approve-btn:hover, .deny-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Users List */
.users-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-item {
    background: #111111;
    border: 1px solid #00ffea;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.user-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 234, 0.2);
    border-color: #ffffff;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00ffea;
}

.user-details h4 {
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.user-roles {
    color: #00ffea;
    font-size: 0.9rem;
}

.view-user-btn {
    background: linear-gradient(135deg, #00ffea, #ffffff);
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.view-user-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 234, 0.3);
}

/* Reports Grid */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.report-card {
    background: #111111;
    border: 1px solid #00ffea;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 234, 0.2);
    border-color: #ffffff;
}

.report-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ffea, #ffffff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000000;
}

.report-info h3 {
    color: #00ffea;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.report-number {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* Settings Grid */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.setting-card {
    background: #111111;
    border: 1px solid #00ffea;
    border-radius: 12px;
    padding: 2rem;
}

.setting-card h3 {
    color: #00ffea;
    margin: 0 0 1.5rem 0;
    font-size: 1.3rem;
}

.setting-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.setting-item label {
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.setting-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00ffea;
}

.setting-item select {
    background: #1a1a1a;
    border: 1px solid #00ffea;
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Loading States */
.loading-apps, .loading-users, .no-applications, .no-users {
    text-align: center;
    padding: 3rem;
    color: #cccccc;
}

.loading-apps i, .loading-users i {
    font-size: 2rem;
    color: #00ffea;
    margin-bottom: 1rem;
}

.no-applications i, .no-users i {
    font-size: 3rem;
    color: #666666;
    margin-bottom: 1rem;
}

/* Responsive adjustments for staff panel */
@media (max-width: 768px) {
    .staff-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .staff-nav-btn {
        justify-content: center;
    }
    
    .tab-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-actions {
        justify-content: center;
    }
    
    .app-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .app-actions {
        justify-content: center;
    }
    
    .user-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .settings-grid {
        grid-template-columns: 1fr;
    }
}

.nav-link.active {
    color: #00ffea;
    background: rgba(0, 255, 234, 0.1);
    text-shadow: 0 0 8px rgba(0, 255, 234, 0.6);
}

/* Music Controls */
.music-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ffea;
    border-radius: 25px;
    padding: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 255, 234, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.music-controls:hover {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 8px 30px rgba(0, 255, 234, 0.5);
}

.music-btn {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #00ffea;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.music-btn:hover {
    background: rgba(0, 255, 234, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.music-btn:active {
    transform: scale(0.95);
}

.music-btn.play-pause {
    width: 40px;
    height: 40px;
    background: #00ffea;
    color: #000000;
    font-size: 16px;
    margin: 0 2px;
}

.music-btn.play-pause:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 15px rgba(0, 255, 234, 0.7);
}

/* Modal styles will be added later */

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-right {
        gap: 0.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .login-btn {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .banner {
        height: 300px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .welcome-section h2 {
        font-size: 2rem;
    }
    
    .quick-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    


}

@media (max-width: 480px) {
    .nav-logo span {
        display: none;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .welcome-section h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff, #ff6b35);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff6b35, #00d4ff);
}
