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

:root {
    --primary-red: #dc2626;
    --dark-red: #991b1b;
    --light-red: #fca5a5;
    --dark-bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --border-color: #333;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
    --gradient-bg: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
    --glow: 0 0 20px rgba(220, 38, 38, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
.navbar {
    background: #0f0f0f;
    border-bottom: 1px solid #222;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
}

.navbar:hover {
    background: #0d0d0d;
    border-bottom-color: #2a2a2a;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    height: 80px;
    gap: 1rem;
}

.nav-logo {
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: fit-content;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

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

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.nav-logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.5);
    border-color: var(--primary-red);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #dc2626 50%, #fca5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-secondary);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    border: 1px solid transparent;
    font-size: 0.9rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(252, 165, 165, 0.05));
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: #1a1a1a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
    border-color: #2a2a2a;
}

.nav-link.active {
    background: #0d0d0d;
    border-color: #e53e3e;
}

.nav-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
    color: var(--primary-red);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.8rem;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    transition: left 0.6s ease;
    z-index: -1;
}

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

.login-btn:hover {
    background: #0d0d0d;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8);
    border-color: #e53e3e;
}

.login-btn i {
    transition: all 0.3s ease;
}

.login-btn:hover i {
    transform: scale(1.2);
}

/* Register Button */
.register-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.8rem;
    background: #0d0d0d;
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
    border: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
    margin-left: 0;
    font-size: 0.95rem;
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #0d0d0d);
    transition: left 0.6s ease;
    z-index: -1;
}

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

.register-btn:hover {
    background: #0a0a0a;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8);
    border-color: #333;
}

.register-btn i {
    transition: all 0.3s ease;
}

.register-btn:hover i {
    transform: scale(1.2);
}

/* Auth Links Container */
.auth-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Navigation Login Section */
.nav-login {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 0.4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.user-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.user-menu .nav-link:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.user-menu .nav-link.active {
    background: linear-gradient(135deg, var(--primary-red), #b91c1c);
    color: white;
}

.user-menu .nav-link i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.user-menu .nav-link:hover i {
    transform: scale(1.1);
}

/* Dashboard Button */
.user-menu .nav-link[href*="dashboard"]:not([href*="admin"]):not([href*="logout"]) {
    background: linear-gradient(135deg, #e53e3e, #a83232);
    color: white;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.3);
}

.user-menu .nav-link[href*="dashboard"]:not([href*="admin"]):not([href*="logout"]):hover {
    background: linear-gradient(135deg, #a83232, #8b2a2a);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.5);
    transform: translateY(-3px) scale(1.05);
}

/* Admin Button Special Styling */
.user-menu .nav-link[href*="admin"] {
    background: linear-gradient(135deg, #e53e3e, #a83232);
    color: white;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.3);
    position: relative;
}

.user-menu .nav-link[href*="admin"]:hover {
    background: linear-gradient(135deg, #a83232, #8b2a2a);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.5);
    transform: translateY(-3px) scale(1.05);
}

/* Logout Button Special Styling */
.user-menu .nav-link[href*="logout"] {
    background: linear-gradient(135deg, #e53e3e, #a83232);
    color: white;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.3);
}

.user-menu .nav-link[href*="logout"]:hover {
    background: linear-gradient(135deg, #a83232, #8b2a2a);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.5);
    transform: translateY(-3px) scale(1.05);
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .nav-menu {
        margin: 0 1rem;
        gap: 1rem;
    }
    
    .nav-login {
        padding-left: 1rem;
    }
    
    .auth-links {
        margin-left: 1rem;
    }
    
    .user-menu {
        margin-left: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        gap: 0.5rem;
    }
    
    .nav-menu {
        margin: 0;
        gap: 0.5rem;
    }
    
    .nav-login {
        padding-left: 0.5rem;
    }
    
    .auth-links {
        flex-direction: column;
        gap: 0.5rem;
        margin-left: 0.5rem;
    }
    
    .register-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .login-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .user-menu {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem;
        min-width: 200px;
        margin-left: 0.5rem;
    }
    
    .user-menu .nav-link {
        padding: 0.5rem 1rem;
        justify-content: center;
        width: 100%;
    }
    
    .user-menu .nav-link span {
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .auth-links {
        width: 100%;
    }
    
    .login-btn,
    .register-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
    }
    
    .user-menu {
        width: 100%;
        max-width: 250px;
    }
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d1b1b 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 40% 80%, rgba(252, 165, 165, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #dc2626 30%, #fca5a5 70%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease, textGlow 3s ease-in-out infinite alternate;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 0 60px rgba(220, 38, 38, 0.3);
}

@keyframes textGlow {
    0% { 
        filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.3));
    }
    100% { 
        filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.6));
    }
}

.hero p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s both;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.btn::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.6s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), #b91c1c);
    color: white;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c, var(--primary-red));
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(220, 38, 38, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary-red);
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(220, 38, 38, 0.3);
}

.btn i {
    transition: all 0.3s ease;
}

.btn:hover i {
    transform: scale(1.2);
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 27, 27, 0.4));
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red), var(--primary-red));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    width: 300px;
    height: 300px;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
    border-color: var(--primary-red);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    display: inline-block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--light-red);
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Status Indicators */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.status-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.status-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.status-online {
    border-left: 4px solid #10b981;
}

.status-maintenance {
    border-left: 4px solid #f59e0b;
}

.status-offline {
    border-left: 4px solid #ef4444;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        padding: 3rem 0;
        gap: 1.5rem;
        border-top: 1px solid rgba(220, 38, 38, 0.3);
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background: var(--primary-red);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background: var(--primary-red);
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.65rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding: 4rem 1rem;
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

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

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .nav-container {
        padding: 0 1rem;
        height: 70px;
    }

    .features {
        padding: 3rem 1rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .login-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Mobile responsive for new sections */
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-stats {
        gap: 1rem;
    }

    .trust-badges {
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-showcase {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--primary-red);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Additional Modern Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Floating animation for certain elements */
.floating {
    animation: float 3s ease-in-out infinite;
}

/* Staggered animation delays */
.feature-card:nth-child(1) {
    animation: scaleIn 0.6s ease 0.1s both;
}

.feature-card:nth-child(2) {
    animation: scaleIn 0.6s ease 0.2s both;
}

.feature-card:nth-child(3) {
    animation: scaleIn 0.6s ease 0.3s both;
}

/* Improved hover states */
.nav-link,
.btn,
.feature-card,
.login-btn {
    transform-origin: center;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Enhanced glow effects */
.glow-on-hover {
    position: relative;
}

.glow-on-hover::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-red), var(--light-red), var(--primary-red));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-on-hover:hover::before {
    opacity: 1;
}

/* New Homepage Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section Updates */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.hero-trust {
    margin-top: 2rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-item i {
    color: #fbbf24;
}

.hero-video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 27, 27, 0.4));
    border-radius: 16px;
    border: 2px solid rgba(220, 38, 38, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: var(--primary-red);
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary-red);
}

.video-placeholder span {
    color: var(--text-primary);
    font-weight: 600;
}

/* Cheat Features Section */
.cheat-features {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

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

.feature-category {
    background: rgba(26, 26, 26, 0.5);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

.feature-category:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.feature-category h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-category h3 i {
    color: var(--primary-red);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background: var(--dark-bg);
}

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

.pricing-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 27, 27, 0.4));
    border-radius: 16px;
    border: 2px solid rgba(220, 38, 38, 0.2);
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
}

.pricing-card.featured {
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    color: var(--text-primary);
    font-weight: 800;
}

.period {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.pricing-features {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-btn {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2d1b1b 0%, #1a1a1a 100%);
}

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

.testimonial-card {
    background: rgba(26, 26, 26, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Live Stats Section */
.live-stats {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 27, 27, 0.4));
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Call to Action Section */
.cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Discord & Status Page Specific Styles */
.discord-preview {
    width: 100%;
    max-width: 400px;
    background: #36393f;
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid #5865f2;
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

.discord-header i {
    color: #5865f2;
    font-size: 1.5rem;
}

.discord-channels {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #b9bbbe;
    transition: all 0.3s ease;
}

.channel-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.channel-item.vip {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #fbbf24;
}

.channel-item i {
    color: #72767d;
}

.channel-item.vip i {
    color: #fbbf24;
}

.status-monitor {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 27, 27, 0.4));
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.monitor-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.monitor-header i {
    color: #10b981;
    font-size: 1.5rem;
}

.monitor-services {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-status:hover {
    background: rgba(255, 255, 255, 0.1);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-indicator.online {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: pulse 2s infinite;
}

.status-indicator.offline {
    background: #ef4444;
}

.status-indicator.maintenance {
    background: #f59e0b;
}

.rule-card {
    background: rgba(26, 26, 26, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.rule-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.rule-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.rule-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.rule-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.incident-card {
    background: rgba(26, 26, 26, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
}

.incident-card:hover {
    transform: translateY(-5px);
}

.incident-card.resolved {
    border-color: rgba(16, 185, 129, 0.3);
}

.incident-card.maintenance {
    border-color: rgba(245, 158, 11, 0.3);
}

.incident-card.update {
    border-color: rgba(59, 130, 246, 0.3);
}

.incident-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.incident-card.resolved .incident-status {
    color: #10b981;
}

.incident-card.maintenance .incident-status {
    color: #f59e0b;
}

.incident-card.update .incident-status {
    color: #3b82f6;
}

.incident-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Terms & News Page Specific Styles */
.terms-preview {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 27, 27, 0.4));
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.terms-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.terms-header i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.terms-sections {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.section-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.section-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.section-item i {
    color: #10b981;
}

.news-preview {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 27, 27, 0.4));
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.news-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.news-header i {
    color: #3b82f6;
    font-size: 1.5rem;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.news-item.recent {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: var(--primary-red);
}

.news-item i {
    color: #72767d;
}

.news-item.recent i {
    color: var(--primary-red);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.terms-section {
    background: rgba(26, 26, 26, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
}

.terms-section:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.terms-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-section p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Booster System Styles */
.booster-preview {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 27, 27, 0.4));
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(220, 38, 38, 0.3);
}

.booster-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.booster-header i {
    color: var(--primary-red);
    font-size: 1.5rem;
}

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

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
}

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

.user-avatar i {
    color: var(--text-secondary);
    font-size: 1.5rem;
}

.user-details {
    flex: 1;
}

.username {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.user-role {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    display: inline-block;
}

.user-role.admin {
    background: rgba(220, 38, 38, 0.2);
    color: var(--primary-red);
}

.user-role.denied {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.login-prompt {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
}

.login-prompt i {
    color: #5865f2;
    font-size: 1.5rem;
}

/* Flash Messages */
.flash-messages {
    padding: 1rem 2rem;
    background: rgba(15, 15, 15, 0.5);
}

.alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

/* Booster Grid */
.booster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.booster-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 27, 27, 0.4));
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.booster-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
    border-color: var(--primary-red);
}

.booster-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.booster-card:hover .booster-thumbnail img {
    transform: scale(1.05);
}

.booster-thumbnail.placeholder {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(252, 165, 165, 0.05));
}

.booster-thumbnail.placeholder i {
    font-size: 3rem;
    color: var(--primary-red);
    opacity: 0.7;
}

.booster-content {
    padding: 1.5rem;
}

.booster-content h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.booster-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: none;
    overflow: visible;
}

.booster-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.booster-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.booster-meta i {
    color: var(--primary-red);
}

.booster-actions {
    display: flex;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
}

.booster-actions .btn {
    flex: 1;
}

.btn-danger {
    background: #ef4444;
    color: white;
    border: 2px solid transparent;
    padding: 0.75rem;
    width: auto;
    flex: none;
}

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.delete-form {
    margin: 0;
}

/* No Items State */
.no-items {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.no-items-icon {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.no-items h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-items p {
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Admin Panel Styles */
.admin-preview {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 27, 27, 0.4));
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.admin-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.admin-header i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.admin-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.admin-stats .stat:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.admin-stats .stat i {
    color: #f59e0b;
}

/* Admin Form Styles */
.admin-form-section {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.form-header {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(252, 165, 165, 0.05));
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.form-header h2 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.form-header p {
    color: var(--text-secondary);
}

.admin-form {
    padding: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group label i {
    color: var(--primary-red);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group small {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.preview-container {
    max-width: 400px;
    margin: 2rem auto 0;
}

.preview-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.preview-header h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.preview-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.preview-card {
    max-width: none;
    margin: 0;
}

/* Access Denied Styles */
.access-denied {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    margin-top: 2rem;
}

.access-denied-icon {
    font-size: 4rem;
    color: #ef4444;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.access-denied h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.access-denied p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.access-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.info-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design for Booster */
@media (max-width: 768px) {
    .booster-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .booster-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .user-info {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .access-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-item {
        padding: 0.75rem;
    }
}

/* Status Dashboard Styles */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
}

.status-dashboard {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.dashboard-header i {
    color: #10b981;
    font-size: 1.2rem;
}

.status-summary {
    text-align: center;
    margin-bottom: 2rem;
}

.summary-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.circle-progress {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        #10b981 0deg,
        #10b981 var(--percent, 0deg),
        rgba(255, 255, 255, 0.1) var(--percent, 0deg),
        rgba(255, 255, 255, 0.1) 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-progress::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background: #1a1a1a;
    border-radius: 50%;
    z-index: 1;
}

.circle-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.percent-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.status-text {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.summary-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.stat-value {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.quick-services {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-service {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-indicator.online {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.service-indicator.offline {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.service-indicator.unknown {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.service-indicator.more {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.service-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.quick-service.more .service-name {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }
    
    .hero-visual {
        padding-left: 0;
        padding-top: 2rem;
    }
    
    .status-dashboard {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .summary-circle {
        width: 100px;
        height: 100px;
    }
    
    .circle-progress::before {
        width: 75px;
        height: 75px;
    }
    
    .percent-text {
        font-size: 1.3rem;
    }
}

/* Navbar User Profile Styles */
.user-info {
    margin-right: 1rem;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.user-profile:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}



.user-avatar-container {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
}

.user-avatar:hover {
    transform: scale(1.05);
    border-color: rgba(220, 38, 38, 0.8);
}

.user-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(220, 38, 38, 0.1));
    border: 2px solid rgba(220, 38, 38, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-avatar-placeholder i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.user-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.user-details .username {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-details .discord-tag {
    color: var(--text-secondary);
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.8;
}

/* Mobile adjustments for user profile */
@media (max-width: 768px) {
    .user-info {
        margin-right: 0.5rem;
    }
    
    .user-profile {
        padding: 0.4rem 0.7rem;
        gap: 0.5rem;
    }
    
    .user-avatar,
    .user-avatar-placeholder {
        width: 32px;
        height: 32px;
    }
    
    .user-avatar-placeholder i {
        font-size: 1rem;
    }
    
    .user-details .username {
        font-size: 0.8rem;
        max-width: 80px;
    }
    
    .user-details .discord-tag {
        font-size: 0.7rem;
        max-width: 80px;
    }
}

/* Auth Container Styles (Login/Register) */
.auth-container {
    min-height: 100vh;
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.auth-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    border: 1px solid #222;
}

.auth-icon {
    width: 60px;
    height: 60px;
    background: #e53e3e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: white;
}

.auth-card h1 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.auth-card .subtitle {
    color: #555;
    font-size: 14px;
    margin: 0 0 32px 0;
}

.auth-form {
    text-align: left;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.auth-form .form-group label i {
    color: #e53e3e;
    width: 16px;
}

.auth-form .form-group input {
    width: 100%;
    padding: 12px 16px;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: #e53e3e;
}

.auth-form .form-group input::placeholder {
    color: #555;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background: #e53e3e;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 24px 0;
    transition: background-color 0.2s;
}

.auth-btn:hover {
    background: #c53030;
}

.auth-footer {
    color: #555;
    font-size: 14px;
    margin: 8px 0 0 0;
    text-align: center;
}

.auth-footer a {
    color: #e53e3e;
    text-decoration: none;
}

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

.verification-message {
    padding: 20px 0;
}

.verification-message i {
    font-size: 48px;
    color: #38a169;
    margin-bottom: 16px;
}

.verification-message h3 {
    color: #ffffff;
    font-size: 20px;
    margin: 0 0 12px 0;
}

.verification-message p {
    color: #555;
    font-size: 14px;
    margin: 0;
}

.verification-message strong {
    color: #e53e3e;
}

/* Auth Flash Messages */
.auth-container .flash-messages {
    margin-bottom: 20px;
}

.auth-container .alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.auth-container .alert-error {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid rgba(229, 62, 62, 0.3);
    color: #e53e3e;
}

.auth-container .alert-success {
    background: rgba(56, 161, 105, 0.1);
    border: 1px solid rgba(56, 161, 105, 0.3);
    color: #38a169;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 30px 20px;
    }
    
    .auth-card h1 {
        font-size: 24px;
    }
}