

@import './manage.css';
@import './rank.css';
@import './shop.css';
@import './topup.css';
@import '../codex.css';

:root {
    --color-bg: #FFF8E7;
    /* Warm cream background */
    --color-surface: #FFECB3;
    /* Light gold surface */
    --color-primary: #FFB800;
    /* Champion Gold */
    --color-primary-dark: #CC8800;
    /* Dark Gold */
    --color-accent: #FF8C00;
    /* Orange Accent */
    --color-red: #FF0000;
    /* Red Accent from logo */
    --color-text: #1a1a1a;
    /* Dark text */
    --color-text-muted: #666666;
    /* Muted text */

    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;

    --spacing-container: 120px;
    --transition-speed: 0.4s;
    --vibrant-green: #268326;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
}

.highlight {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 2px;
}

.section-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--color-text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid transparent;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-primary {
    background: rgba(255, 184, 0, 0.05);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 8px 32px rgba(255, 184, 0, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    z-index: -1;
    transition: left var(--transition-speed);
}

.btn-primary:hover {
    color: #fff;
    background: rgba(255, 184, 0, 0.3);
    box-shadow: 0 12px 40px rgba(255, 184, 0, 0.6);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.9);
    border-color: #1a1a1a;
    font-weight: 600;
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background: rgba(255, 244, 220, 0.95);
    color: var(--color-primary);
    text-shadow: 0 2px 8px rgba(255, 184, 0, 0.4);
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.3);
}

/* --- Navigation Systems --- */

/* 1. Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s;
    background: rgba(255, 250, 240, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.08);
}

.nav-links.active {
    display: flex;
    background: rgba(255, 248, 231, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--color-primary);
    box-shadow: 0 8px 32px rgba(255, 184, 0, 0.2);
}

.top-nav.scrolled {
    padding: 1rem 3rem;
    background: rgba(255, 250, 240, 0.95);
    border-bottom: 1px solid rgba(255, 184, 0, 0.25);
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-decoration: none;
    color: #1a1a1a;
    text-shadow: 0 2px 8px rgba(255, 184, 0, 0.3);
    transition: all 0.3s;
}

.logo-image {
    height: 45px;
    width: auto;
    display: block;
    transition: all 0.3s;
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 184, 0, 0.5));
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
    text-shadow: 0 2px 8px rgba(255, 184, 0, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s;
}

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

.nav-cta {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
}

/* Nav Dropdown */
.nav-links li {
    position: relative;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.nav-dropdown-icon {
    transition: transform 0.3s;
    font-size: 0.7rem;
}

.nav-dropdown:hover .nav-dropdown-icon,
.nav-dropdown.active .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: rgba(255, 248, 231, 0.98);
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    padding: 0.5rem 0;
    box-shadow: 0 8px 32px rgba(255, 184, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 184, 0, 0.1);
    color: var(--color-primary);
    padding-left: 2rem;
}

.nav-dropdown-menu a::after {
    display: none;
}

/* 2. Left Side Indicators */
.left-indicators {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
}

.left-indicators ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left-indicators a {
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid rgba(0, 0, 0, 0.4);
    transform: rotate(45deg);
    transition: all 0.3s;
}

.left-indicators a:hover {
    border-color: var(--color-primary);
    transform: rotate(45deg) scale(1.2);
}

.left-indicators a.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.6);
    transform: rotate(45deg) scale(1.2);
}

/* 3. Right Side Socials */
.right-socials {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.right-socials>div:first-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.social-icon {
    color: #1a1a1a;
    width: 24px;
    height: 24px;
    transition: all 0.3s;
    opacity: 0.7;
}

.social-icon:hover {
    color: var(--color-primary);
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(255, 184, 0, 0.6));
}

/* Online Counter */
.online-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: rgba(255, 248, 231, 0.95);
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(255, 184, 0, 0.25);
    min-width: 60px;
}

.top-killers-section {
    background: rgba(255, 248, 231, 0.6);
    border: 2px solid rgba(255, 184, 0, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.counter-icon {
    font-size: 14px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.counter-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-primary);
    text-shadow: 0 2px 4px rgba(255, 184, 0, 0.3);
    letter-spacing: 0.5px;
}

/* Social Toggle Button (Mobile/Tablet) */
.social-toggle {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    border: 2px solid #CC8800;
    border-radius: 50%;
    z-index: 999;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 184, 0, 0.4);
    transition: all 0.3s;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 24px;
}

.social-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.6);
}

.social-toggle.active {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
}

/* Mobile/Tablet Responsive */
@media (max-width: 1024px) {
    .social-toggle {
        display: flex !important;
    }

    /* Hide by default on mobile */
    .right-socials {
        position: fixed;
        right: 20px;
        bottom: 80px;
        top: auto;
        left: auto;
        transform: translateY(-50%);
        z-index: 1000;
        display: none;
        flex-direction: column-reverse;
        align-items: flex-end;
        gap: 15px;
    }

    /* Show when active */
    .right-socials.active {
        display: flex !important;
    }

    .right-socials>div:first-child {
        display: flex !important;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /* Initial state - hidden */
    .right-socials a.social-icon {
        opacity: 0;
        transform: scale(0);
    }

    .right-socials .online-counter {
        opacity: 0;
        transform: scale(0);
    }

    /* Animate each icon when parent is active */
    .right-socials.active a.social-icon:nth-child(1) {
        animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        animation-delay: 0.05s;
    }

    .right-socials.active a.social-icon:nth-child(2) {
        animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        animation-delay: 0.15s;
    }

    .right-socials.active a.social-icon:nth-child(3) {
        animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        animation-delay: 0.25s;
    }

    .right-socials.active a.social-icon:nth-child(4) {
        animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        animation-delay: 0.35s;
    }

    .right-socials.active .online-counter {
        animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        animation-delay: 0.45s;
    }

    /* Pop in animation */
    @keyframes popIn {
        0% {
            opacity: 0;
            transform: scale(0) translateY(20px);
        }

        70% {
            transform: scale(1.15) translateY(-5px);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }
}

/* Account Dropdown */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.account-dropdown {
    position: relative;
}

.account-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 244, 220, 0.4);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.account-trigger:hover {
    background: rgba(255, 184, 0, 0.2);
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.3);
    transform: translateY(-2px);
}

.account-name {
    color: var(--color-primary);
    text-transform: uppercase;
}

.dropdown-icon {
    transition: transform 0.3s;
    color: var(--color-primary);
}

.account-trigger:hover .dropdown-icon,
.account-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Account Panel Modal */
.account-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 700px;
    max-width: 800px;
    background: rgba(255, 248, 231, 0.98);
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(255, 184, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.account-dropdown.active .account-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.panel-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(157, 0, 255, 0.3);
}

.panel-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #FFB800;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
}

.welcome-text {
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 400;
}

.username-highlight {
    color: var(--color-primary);
    font-weight: 700;
}

.panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.status-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.status-label {
    font-weight: 600;
    color: var(--color-text);
}

.status-value {
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.status-value.active {
    background: var(--color-primary);
    color: #000;
}

.currency-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.currency-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 184, 0, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 184, 0, 0.1);
}

.currency-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.currency-value {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.9rem;
}

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

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

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 184, 0, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 184, 0, 0.1);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.stat-value {
    font-weight: 700;
    color: var(--color-text);
    font-size: 0.9rem;
}

.last-login-section {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.last-login-label {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.9rem;
}

.last-login-value {
    font-weight: 600;
    color: var(--color-primary);
    text-align: right;
    font-size: 0.85rem;
    line-height: 1.4;
}

.panel-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-manage,
.btn-logout {
    width: 100%;
    padding: 0.875rem 2rem;
    border: 2px solid;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-manage {
    background: rgba(255, 184, 0, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-manage:hover {
    background: var(--color-primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 184, 0, 0.4);
}

.btn-logout {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
    color: #ff0000;
}

.btn-logout:hover {
    background: #ff0000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* Layout Sections */
.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
    border-bottom: 1px solid rgba(157, 0, 255, 0.05);
}

/* Section Background Variations - Soft Warm Champion Theme */
/* Inspired by Seal Champion logo - gentle warm tones */

#hero {
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF4DC 50%, #FFEFCA 100%);
}

#info {
    background: linear-gradient(180deg, #FFFEF8 0%, #FFF8E7 100%);
}

#job {
    background: linear-gradient(180deg, #FFF8E7 0%, #FFF4DC 100%);
}

#features {
    background: linear-gradient(180deg, #FFFBF0 0%, #FFF6E0 100%);
}

#rank {
    background: linear-gradient(180deg, #FFF4DC 0%, #FFEFC8 100%);
}

#rules {
    background: linear-gradient(180deg, #FFF8E7 0%, #FFF2D6 100%);
}

#download {
    background: linear-gradient(135deg, #FFE9B8 0%, #FFD99F 50%, #FFC97A 100%);
}

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

/* Hero Section */
#hero {
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Soft warm background matching logo */
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF4DC 50%, #FFEFCA 100%);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    /* 16:9 aspect ratio based on height */
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    /* 16:9 aspect ratio based on width */
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.7;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.7) 90%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.glitch {
    font-size: 5rem;
    color: #fff;
    position: relative;
    margin-bottom: 1rem;
    animation: glitch-anim 3s infinite alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        text-shadow: -2px 0 var(--color-primary), 2px 0 var(--color-accent);
    }

    90% {
        text-shadow: -2px 0 var(--color-primary), 2px 0 var(--color-accent);
    }

    92% {
        text-shadow: 2px 0 var(--color-primary), -2px 0 var(--color-accent);
    }

    100% {
        text-shadow: 2px 0 var(--color-primary), -2px 0 var(--color-accent);
    }
}

.subtitle {
    font-size: 1.5rem;
    letter-spacing: 5px;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 3rem;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    margin-top: 10px;
}

/* Server Info Section */
.server-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.info-card {
    background: rgba(255, 250, 240, 0.03);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 184, 0, 0.2);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.08);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    background: rgba(255, 244, 220, 0.5);
    box-shadow: 0 12px 40px rgba(255, 184, 0, 0.25);
}

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

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

.info-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(157, 0, 255, 0.3);
}

/* About Section (Legacy) */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.about-card {
    background: rgba(255, 250, 240, 0.03);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 184, 0, 0.2);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.08);
}

.about-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 244, 220, 0.4);
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(255, 184, 0, 0.25);
}

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

/* Carousel (Classes) */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
}

.carousel-track-container {
    overflow: hidden;
    height: 100%;
}

.carousel-track {
    display: flex;
    list-style: none;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.class-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(20, 20, 20, 0.5);
    padding: 2rem;
    border-left: 5px solid var(--color-primary);
    width: 80%;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.class-visual {
    width: 150px;
    height: 150px;
    background: #333;
    /* Placeholder for image */
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.3);
}

.class-info h3 {
    font-size: 2.5rem;
    color: #fff;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-size: 3rem;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev {
    left: -50px;
}

.carousel-btn.next {
    right: -50px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-item .icon {
    font-size: 2.5rem;
    line-height: 1;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

/* Footer Section */
.section-footer {
    text-align: center;
    background: linear-gradient(to top, #0f0514, transparent);
}

.footer-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 3rem 0;
}

footer {
    margin-top: auto;
    padding-top: 5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.socials {
    margin-top: 1rem;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.socials a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--color-primary);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.bleed-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bleed-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* --- Mobile Responsiveness --- */

/* Hamburger Menu (Mobile) */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s;
    border-radius: 2px;
}

/* --- New Sections: Rank, Top Up, Rules --- */

/* Rank Table */
.rank-container {
    background: rgba(245, 245, 245, 0.5);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 184, 0, 0.2);
    overflow-x: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.4);
}

.rank-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--color-text);
}

.rank-table th,
.rank-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rank-table th {
    color: var(--color-primary);
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.rank-table tr:hover {
    background: rgba(157, 0, 255, 0.05);
}

.rank-1 {
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2rem;
}

.rank-2 {
    color: #C0C0C0;
    font-weight: bold;
    font-size: 1.2rem;
}

.rank-3 {
    color: #CD7F32;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Top Up - Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.price-card {
    background: rgba(255, 250, 240, 0.03);
    padding: 2rem;
    border: 1px solid rgba(255, 184, 0, 0.2);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.4);
}

.price-card.featured {
    border-color: var(--color-primary);
    background: rgba(255, 244, 220, 0.4);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 12px 48px rgba(157, 0, 255, 0.5);
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.3);
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.price-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--color-accent);
    color: #1a1a1a;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

.price-features li {
    margin: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 5px;
}

/* Rules List */
.rules-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(20, 20, 20, 0.5);
    padding: 1.5rem;
    border-left: 3px solid var(--color-text-muted);
    transition: all 0.3s;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 0, 255, 0.1);
}

.rule-item:hover {
    border-left-color: var(--color-primary);
    padding-left: 2rem;
    background: linear-gradient(90deg, rgba(157, 0, 255, 0.1), transparent);
}

.rule-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.rule-content h3 {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

/* Tablet Media Query */
@media (max-width: 1024px) and (min-width: 769px) {

    /* Account Dropdown Position */
    .account-dropdown {
        position: static;
    }

    /* Account Panel Responsive for Tablet */
    .account-panel {
        position: fixed;
        top: 80px;
        right: 20px;
        left: 20px;
        width: calc(100vw - 40px);
        min-width: auto;
        max-width: 700px;
        max-height: calc(100vh - 100px);
        margin: 0 auto;
        padding: 1.25rem;
        overflow-y: auto;
        z-index: 9999;
    }

    .panel-header h2 {
        font-size: 1.6rem;
    }

    .panel-content {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .status-row,
    .last-login-section,
    .panel-actions {
        grid-column: 1 / -1;
    }

    .btn-manage,
    .btn-logout {
        font-size: 0.9rem;
    }
}

/* Mobile Media Query */
@media (max-width: 768px) {

    /* Top Nav */
    .top-nav {
        padding: 1rem 1.5rem;
        background: rgba(255, 250, 240, 0.95);
        justify-content: space-between;
    }

    .nav-logo {
        order: 1;
    }

    .hamburger-menu {
        display: flex;
        order: 3;
    }

    /* Mobile Menu Styles */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 248, 231, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        /* Reset transform from desktop centering */
        transform: none;
        left: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--color-text);
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--color-primary);
    }

    .nav-cta {
        display: none;
    }

    /* Mobile Nav Dropdown */
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 300px;
    }

    .nav-dropdown-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        text-align: center;
    }

    .nav-dropdown-menu a:hover {
        padding-left: 2rem;
        background: rgba(255, 184, 0, 0.15);
    }

    .nav-dropdown-trigger {
        font-size: 1.5rem;
        color: var(--color-text);
        justify-content: center;
    }

    /* Account Dropdown Position */
    .account-dropdown {
        position: static;
    }

    /* Account Panel Responsive - Compact & Scrollable */
    .account-panel {
        position: fixed;
        top: 70px;
        right: 10px;
        left: 10px;
        width: calc(100vw - 20px);
        min-width: auto;
        max-width: none;
        max-height: calc(100vh - 90px);
        padding: 1rem;
        overflow-y: auto;
        z-index: 9999;
    }

    .panel-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .panel-header h2 {
        font-size: 1.4rem;
    }

    .welcome-text {
        font-size: 0.85rem;
    }

    .panel-content {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .status-row,
    .last-login-section {
        padding: 0.5rem 0.75rem;
    }

    .status-label,
    .last-login-label {
        font-size: 0.8rem;
    }

    .status-value {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .currency-section,
    .login-stats {
        grid-column: 1;
        gap: 0.4rem;
    }

    .currency-item,
    .stat-item {
        padding: 0.4rem 0.6rem;
    }

    .currency-label,
    .stat-label {
        font-size: 0.75rem;
    }

    .currency-value,
    .stat-value {
        font-size: 0.8rem;
    }

    .last-login-value {
        font-size: 0.75rem;
    }

    .panel-actions {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .btn-manage,
    .btn-logout {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    /* Hamburger Animation for Active State */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Typography Overrides */
    .glitch {
        font-size: 3rem;
    }

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

    .section-desc {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    /* Hide Fixed Side Elements */
    .left-indicators,
    .right-socials {
        display: none;
    }

    /* Layout Adjustments */
    .about-grid,
    .features-grid,
    .server-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .class-card {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 1.5rem;
    }

    .class-visual {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    /* Carousel Buttons Mobile */
    .carousel-btn {
        display: block;
        font-size: 2rem;
        background: rgba(255, 250, 240, 0.5);
        padding: 0.5rem;
        border-radius: 50%;
    }

    .carousel-btn.prev {
        left: 0;
    }

    .carousel-btn.next {
        right: 0;
    }

    .carousel-container {
        height: auto;
        min-height: 450px;
    }

    /* New Sections Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .rule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .rule-num {
        font-size: 2rem;
    }
}

/* Info Section - 2 Column Layout */
.info-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.info-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.server-stats-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}

.stat-compact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 248, 231, 0.6);
    border: 2px solid rgba(255, 184, 0, 0.3);
    border-radius: 12px;
    padding: 0.875rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-compact-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.2);
}

.stat-compact-icon {
    font-size: 1.75rem;
}

.stat-compact-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-compact-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.stat-compact-value {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 700;
}

.top-killers-section {
    background: rgba(255, 248, 231, 0.6);
    border: 2px solid rgba(255, 184, 0, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.killers-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.killers-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.killer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.625rem 0.875rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 184, 0, 0.4);
    transition: all 0.3s;
}

.killer-item:hover {
    background: rgba(255, 244, 220, 0.8);
    border-left-color: var(--color-primary);
    transform: translateX(4px);
}

.killer-item.rank-1 {
    border-left-color: #FFD700;
    background: rgba(255, 215, 0, 0.15);
}

.killer-item.rank-2 {
    border-left-color: #C0C0C0;
    background: rgba(192, 192, 192, 0.15);
}

.killer-item.rank-3 {
    border-left-color: #CD7F32;
    background: rgba(205, 127, 50, 0.15);
}

.killer-rank {
    font-weight: 700;
    color: var(--color-text-muted);
    min-width: 30px;
    font-size: 0.875rem;
}

.killer-name {
    flex: 1;
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.killer-kills {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.view-leaderboard-btn {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    color: #000;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.view-leaderboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 184, 0, 0.4);
}

.info-right {
    display: flex;
    flex-direction: column;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

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

.news-item {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 184, 0, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.news-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.2);
}

.news-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

.news-excerpt {
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0.625rem;
    font-size: 0.9rem;
}

.news-link {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.news-link:hover {
    color: var(--color-accent);
}

@media (max-width: 968px) {
    .info-grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 568px) {
    .server-stats-compact {
        grid-template-columns: 1fr;
    }
}

/* Features CTA */
.features-cta {
    text-align: center;
    margin-top: 3rem;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    border-color: #5865F2;
    transition: all 0.3s;
}

.discord-btn:hover {
    background: linear-gradient(135deg, #4752C4 0%, #5B6EAE 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

/* Info Section Specific Spacing */
#info .section-title {
    margin-bottom: 0.5rem;
}

#info .section-desc {
    margin-bottom: 0;
}

.page-wrapper {
    min-height: 100vh;
    background: linear-gradient(180deg, #FFF8E7 0%, #FFEFCA 100%);
    padding: 100px 2rem 4rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(255, 184, 0, 0.2);
}

/* Login Page Specific Styles */
.login-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FFF8E7 0%, #FFECB3 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Ambient Glow */
.login-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.login-container {
    background: rgba(255, 248, 231, 0.6);
    padding: 3rem;
    border: 2px solid rgba(255, 184, 0, 0.3);
    border-radius: 24px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 184, 0, 0.2);
    position: relative;
    z-index: 1;
}

.login-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-logo span {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
}

.login-subtitle {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.form-group label {
    display: block;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.2);
    transform: translateY(-2px);
}

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

.login-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.login-footer {
    margin-top: 2rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.login-footer a {
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.login-footer a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.back-home {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.back-home:hover {
    color: var(--color-primary);
    transform: translateX(-5px);
}

.regular-section {
    max-width: 900px;
    margin: 0 auto 2rem;
    background: rgba(255, 236, 179, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 184, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(255, 184, 0, 0.3);
}

@media screen and (max-width: 768px) {
    .nav-dropdown-menu {
        transform: none !important;
    }
}
