/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #DC143C;
    --dark-red: #8B0000;
    --blood-red: #FF1744;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #1a1a1a;
    --nav-bg: #0d0d0d;
    --text-light: #ffffff;
    --text-dark: #999999;
    --text-medium: #666666;
    --gold: #FFD700;
    --shadow: rgba(0, 0, 0, 0.8);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
}

/* Main Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    color: var(--text-light);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-light);
}

.discord-btn {
    background: var(--primary-red);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.discord-btn:hover {
    background: var(--blood-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(20, 20, 20, 0.8) 100%),
                url('https://cdn.akamai.steamstatic.com/steam/apps/1604030/library_hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-red);
    border-radius: 30px;
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 2px;
}

.title-white {
    color: var(--text-light);
}

.title-red {
    color: var(--primary-red);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background: var(--blood-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-light);
    border: 2px solid var(--card-bg);
}

.btn-secondary:hover {
    background: transparent;
    border-color: var(--text-light);
    transform: translateY(-2px);
}



/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Server Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
    border-radius: 10px;
    border: 2px solid var(--primary-red);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transition: left 0.5s;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 20, 60, 0.3);
    background: rgba(26, 26, 26, 0.8);
}

.info-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.info-card p {
    color: var(--text-dark);
}

/* Stats Section */
.stats-section {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Rules Section */
.rules-container {
    max-width: 900px;
    margin: 0 auto;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.5), rgba(83, 52, 131, 0.3));
    border-left: 4px solid var(--primary-red);
    margin-bottom: 1.5rem;
    border-radius: 5px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.rule-item:hover {
    border-left-color: var(--blood-red);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}

.rule-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    font-family: 'Cinzel', serif;
    min-width: 60px;
}

.rule-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.rule-content p {
    color: var(--text-dark);
}

/* Connect Section */
.connect-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.6));
    position: relative;
}

.connect-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.connect-box {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.6), rgba(83, 52, 131, 0.4));
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--primary-red);
    backdrop-filter: blur(10px);
}

.connect-box h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--blood-red);
}

.server-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    color: var(--blood-red);
    font-family: 'Courier New', monospace;
}

.copy-btn {
    padding: 0.5rem 1rem;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.copy-btn:hover {
    background: var(--blood-red);
    transform: scale(1.05);
}

.connect-steps {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.6), rgba(83, 52, 131, 0.4));
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--primary-red);
    backdrop-filter: blur(10px);
}

.connect-steps h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--blood-red);
}

.connect-steps ol {
    list-style-position: inside;
    color: var(--text-light);
}

.connect-steps li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    border-left: 3px solid var(--primary-red);
}

/* Community Section */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.community-card {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.6), rgba(83, 52, 131, 0.4));
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--primary-red);
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(220, 20, 60, 0.1));
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.community-card:hover::before {
    transform: translateX(0);
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5);
    border-color: var(--blood-red);
}

.community-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.community-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--blood-red);
}

.community-card p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.link-arrow {
    font-size: 2rem;
    color: var(--blood-red);
    float: right;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(15, 52, 96, 0.8), rgba(26, 26, 46, 0.9));\n    border-top: 2px solid var(--primary-red);\n    padding: 3rem 0 1rem;\n    backdrop-filter: blur(10px);\n}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--blood-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section ul {
    color: var(--text-dark);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--blood-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-red);
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .connect-content {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blood-red);
}

/* Selection */
::selection {
    background: var(--blood-red);
    color: white;
}

/* ==================== ADMIN PANEL STYLES ==================== */

.admin-body {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    min-height: 100vh;
}

.admin-container {
    width: 100%;
    min-height: 100vh;
}

/* Login Screen */
.login-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.login-box {
    background: var(--card-bg);
    border: 2px solid var(--primary-red);
    border-radius: 10px;
    padding: 3rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.5);
}

.login-box h1 {
    color: var(--blood-red);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 0 0 10px var(--blood-red);
}

.login-box p {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.steam-login-button {
    display: inline-block;
    margin: 1rem 0;
    transition: transform 0.3s;
}

.steam-login-button:hover {
    transform: scale(1.05);
}

.steam-login-button img {
    display: block;
}

.login-box input {
    width: 100%;
    padding: 1rem;
    background: var(--darker-bg);
    border: 2px solid var(--primary-red);
    color: var(--text-light);
    font-size: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.login-box input:focus {
    outline: none;
    border-color: var(--blood-red);
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.error-msg {
    color: #ff4444;
    font-size: 0.9rem;
    min-height: 20px;
}

/* Admin Panel Layout */
.admin-panel {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.admin-header {
    background: var(--card-bg);
    border-bottom: 2px solid var(--primary-red);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    background: rgba(139, 0, 0, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--primary-red);
}

.admin-user-info img {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 2px solid var(--blood-red);
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.3);
}

.admin-user-info strong {
    color: var(--blood-red);
}

.admin-header h1 {
    color: var(--blood-red);
    font-size: 2rem;
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
    letter-spacing: 1px;
}
    color: var(--blood-red);
    font-size: 1.8rem;
    text-shadow: 0 0 10px var(--blood-red);
}

.admin-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-btn {
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--primary-red), var(--blood-red));
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.admin-btn:hover {
    background: linear-gradient(135deg, var(--blood-red), var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

.admin-btn:active {
    transform: translateY(0);
}

.save-btn {
    background: linear-gradient(135deg, #00aa00, #00dd00);
}

.save-btn:hover {
    background: linear-gradient(135deg, #00cc00, #00ff00);
    box-shadow: 0 6px 20px rgba(0, 200, 0, 0.5);
}

.reset-btn {
    background: linear-gradient(135deg, #ff6600, #ff8833);
}

.reset-btn:hover {
    background: linear-gradient(135deg, #ff8833, #ffaa55);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
}

.logout-btn {
    background: linear-gradient(135deg, #555, #777);
}

.logout-btn:hover {
    background: linear-gradient(135deg, #777, #999);
    box-shadow: 0 6px 20px rgba(100, 100, 100, 0.5);
}

/* Admin Content */
.admin-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.admin-nav-dropdown {
    width: 100%;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--darker-bg) 100%);
    border-bottom: 2px solid var(--primary-red);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.admin-nav-dropdown label {
    color: var(--blood-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.section-dropdown {
    max-width: 400px;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg, var(--darker-bg), #0f0f0f);
    border: 2px solid var(--primary-red);
    color: var(--text-light);
    font-size: 0.95rem;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(139, 0, 0, 0.3);
}

.section-dropdown:hover {
    border-color: var(--blood-red);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5);
    background: #0a0a0a;
}

.section-dropdown:focus {
    outline: none;
    border-color: var(--blood-red);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
    background: #0a0a0a;
}

.section-dropdown option {
    background: var(--darker-bg);
    color: var(--text-light);
    padding: 1rem;
}

/* Editor Sections */
.editor-section {
    flex: 1;
    padding: 1.5rem;
    display: none;
    overflow-y: auto;
    max-height: calc(100vh - 250px);
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.editor-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.editor-section h2 {
    color: var(--blood-red);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.5);
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 0.6rem;
}

.editor-section h3 {
    color: var(--text-light);
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
    position: relative;
    padding-left: 0.8rem;
}

.editor-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background: var(--blood-red);
}

/* Form Elements */
.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    color: var(--blood-red);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    background: linear-gradient(135deg, var(--darker-bg), #0f0f0f);
    border: 2px solid var(--primary-red);
    color: var(--text-light);
    font-size: 0.95rem;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.form-textarea {
    min-height: 80px;
    resize: vertical;
    line-height: 1.5;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blood-red);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
    background: #0a0a0a;
}

/* Card Editors */
.card-editor {
    background: linear-gradient(135deg, var(--card-bg), #151515);
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.card-editor:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
    border-color: var(--blood-red);
}

.card-editor h4 {
    color: var(--blood-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red), var(--blood-red));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 80px;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.5);
}

/* Rule Editor */
.rule-editor {
    background: linear-gradient(135deg, var(--card-bg), #151515);
    border-left: 4px solid var(--primary-red);
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.rule-editor:hover {
    border-left-color: var(--blood-red);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.rule-editor .rule-number-display {
    font-size: 2rem;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-shadow: 0 0 8px rgba(139, 0, 0, 0.5);
    font-family: 'Cinzel', serif;
}

/* Step Editor */
.step-editor {
    background: rgba(139, 0, 0, 0.05);
    border: 2px solid var(--primary-red);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.step-editor:hover {
    background: rgba(139, 0, 0, 0.1);
    border-color: var(--blood-red);
}

.step-editor label {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Admin Footer */
.admin-footer {
    background: linear-gradient(180deg, var(--card-bg), var(--darker-bg));
    border-top: 2px solid var(--primary-red);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
}

.admin-footer p {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-footer p::before {
    content: '💾';
    font-size: 1.2rem;
}

/* Success/Error Messages */
.message {
    position: fixed;
    top: 90px;
    right: 30px;
    padding: 1.2rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    z-index: 10000;
    animation: slideIn 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.message.success {
    background: linear-gradient(135deg, #00aa00, #00dd00);
    color: white;
    border: 2px solid #00ff00;
}

.message.error {
    background: linear-gradient(135deg, #cc0000, #ff0000);
    color: white;
    border: 2px solid #ff3333;
}

@keyframes slideIn {
    from {
        transform: translateX(500px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Admin Panel */
@media (max-width: 768px) {
    .admin-content {
        flex-direction: column;
    }
    
    .admin-nav {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid var(--primary-red);
        flex-direction: row;
        overflow-x: auto;
        gap: 0.5rem;
    }
    
    .nav-btn {
        white-space: nowrap;
    }
    
    .admin-header {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-actions {
        width: 100%;
        justify-content: center;
    }
    
    .admin-footer {
        flex-direction: column;
        text-align: center;
    }
}
