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

:root {
    --primary-color: #6d28d9;
    --secondary-color: #7c3aed;
    --accent-color: #8b5cf6;
    --success-color: #059669;
    --warning-color: #d97706;
    --danger-color: #dc2626;
    --dark-color: #000000;
    --light-color: #0f0f0f;
    --text-primary: #6d28d9;
    --text-secondary: #7c3aed;
    --text-light: #a78bfa;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #0f0f0f 50%, #000000 100%);
    --gradient-secondary: linear-gradient(135deg, #6d28d9 0%, #7c3aed 50%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(135deg, #4c1d95 0%, #6d28d9 50%, #7c3aed 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #0f0f0f 100%);
    --gradient-pink: linear-gradient(135deg, #6d28d9 0%, #7c3aed 50%, #8b5cf6 100%);
    --shadow-light: 0 2px 10px rgba(109, 40, 217, 0.1);
    --shadow-medium: 0 5px 20px rgba(109, 40, 217, 0.2);
    --shadow-heavy: 0 10px 30px rgba(109, 40, 217, 0.3);
    --shadow-glow: 0 0 20px rgba(109, 40, 217, 0.5);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--gradient-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

.admin-body {
    background: var(--gradient-dark);
    color: var(--text-light);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

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

.loading-logo {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.loading-text {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-pink);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

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

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

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: var(--shadow-medium);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
}


.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.logo-sub {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.nav-link i {
    font-size: 1rem;
}

.admin-link {
    background: var(--gradient-primary);
    color: white !important;
    box-shadow: var(--shadow-light);
}

.admin-link::before {
    display: none;
}

.admin-link:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #000000;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: particles 20s ease-in-out infinite;
}

@keyframes particles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-pink);
    backdrop-filter: blur(15px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 2px solid rgba(236, 72, 153, 0.3);
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    box-shadow: var(--shadow-glow);
    animation: badgePulse 3s ease-in-out infinite;
}

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

.hero-badge i {
    color: var(--accent-color);
    animation: sparkle 2s ease-in-out infinite;
    font-size: 1.2rem;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
}

.title-line {
    display: block;
    animation: slideInUp 0.8s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.highlight {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(236, 72, 153, 0.8);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.7;
    animation: slideInUp 0.8s ease-out 0.6s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    animation: slideInUp 0.8s ease-out 0.8s both;
    justify-content: center;
}

.stat-item {
    text-align: center;
    background: rgba(236, 72, 153, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.hero-admin-link {
    display: flex;
    justify-content: center;
    animation: slideInUp 0.8s ease-out 1s both;
    margin-top: 20px;
}

.admin-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(10px);
}

.admin-text-link:hover {
    color: var(--accent-color);
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.admin-text-link i {
    font-size: 16px;
}

/* Admin Indicator */
.admin-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: adminGlow 2s ease-in-out infinite alternate;
}

.admin-indicator i {
    font-size: 12px;
    color: var(--accent-color);
}

.admin-indicator-fixed {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

@keyframes adminGlow {
    0% {
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    }
}

/* Güvenli Logout Modal */
.logout-modal .modal-content {
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
}

.logout-header {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    text-align: center;
    padding: 30px;
    position: relative;
}

.logout-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: logoutPulse 2s ease-in-out infinite;
}

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

.logout-warning {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.logout-warning i {
    color: #ef4444;
    font-size: 1.2rem;
}

.logout-info {
    background: rgba(139, 92, 246, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--primary-color);
    width: 20px;
}

.logout-options {
    margin-bottom: 20px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.checkbox-wrapper:hover {
    background: rgba(139, 92, 246, 0.1);
}

.logout-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.05);
}

.logout-footer .btn {
    min-width: 120px;
}

/* Success Modal */
.success-modal .modal-content {
    max-width: 400px;
    text-align: center;
    padding: 40px;
}

.success-content {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 15px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: successBounce 1s ease-in-out;
}

@keyframes successBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.success-content p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.success-animation {
    display: flex;
    justify-content: center;
}

.loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Admin Panel Styles */
.admin-header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.admin-logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.admin-title h1 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.admin-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.admin-nav-links .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 500;
}

.user-profile i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.admin-actions .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Admin Navigation */
.admin-nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    padding: 0;
    position: sticky;
    top: 100px;
    z-index: 99;
}

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

.admin-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    position: relative;
}

.admin-nav-link:hover {
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.1);
}

.admin-nav-link.active {
    color: var(--primary-color);
    background: rgba(139, 92, 246, 0.1);
    border-bottom-color: var(--primary-color);
}

.admin-nav-link i {
    font-size: 1.1rem;
}

/* Admin Main Content */
.admin-main {
    min-height: calc(100vh - 200px);
    padding: 30px 0;
}

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

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.admin-section-header {
    margin-bottom: 30px;
}

.admin-section-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

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

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-medium);
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}

.stat-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Admin Cards Grid */
.admin-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.admin-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.card-header {
    background: rgba(139, 92, 246, 0.1);
    padding: 20px 25px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.card-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.card-content {
    padding: 25px;
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.activity-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.activity-action {
    color: var(--text-primary);
    font-weight: 500;
    flex: 1;
    margin: 0 15px;
}

.activity-user {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-actions .btn {
    justify-content: flex-start;
    padding: 15px 20px;
    font-size: 1rem;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.admin-table th {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-primary);
    font-weight: 600;
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.admin-table td {
    padding: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.admin-table tr:hover {
    background: rgba(139, 92, 246, 0.05);
}

/* Status Badges */
.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.aktif {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.pasif {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Role Badges */
.role-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.role-badge.super_admin {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.role-badge.admin {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.role-badge.moderator {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Log Container */
.log-container {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    max-height: 400px;
    overflow-y: auto;
}

.log-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.log-entry {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 5px;
    border-left: 3px solid transparent;
}

.log-entry.log-info {
    background: rgba(59, 130, 246, 0.1);
    border-left-color: #3b82f6;
    color: #93c5fd;
}

.log-entry.log-warning {
    background: rgba(245, 158, 11, 0.1);
    border-left-color: #f59e0b;
    color: #fbbf24;
}

.log-entry.log-error {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: #ef4444;
    color: #fca5a5;
}

.log-time {
    color: var(--text-secondary);
    font-weight: 500;
}

.log-level {
    font-weight: 600;
    margin: 0 10px;
}

.log-message {
    color: var(--text-primary);
}

/* Log Filters */
.log-filters {
    display: flex;
    gap: 15px;
    align-items: center;
}

.log-filters .form-select {
    min-width: 150px;
}

/* Form Styles */
.form-select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    min-height: 100px;
    resize: vertical;
    transition: var(--transition);
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(139, 92, 246, 0.3);
    transition: var(--transition);
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Button Styles */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
}

/* Site Stats */
.site-stats {
    margin-top: 30px;
    padding: 20px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.site-stats h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .admin-header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .admin-nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .admin-nav-link {
        justify-content: center;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .table-container {
        font-size: 0.8rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 10px 8px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

.hero-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.3;
}

.floating-cards {
    position: relative;
    width: 400px;
    height: 400px;
    right: -100px;
}

.floating-card {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--gradient-pink);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    border: 2px solid rgba(236, 72, 153, 0.3);
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.floating-card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.8);
}

.card-1 {
    top: 30px;
    right: 30px;
    animation: float1 8s ease-in-out infinite;
}

.card-2 {
    top: 30px;
    right: 150px;
    animation: float2 8s ease-in-out infinite 2s;
}

.card-3 {
    bottom: 30px;
    right: 30px;
    animation: float3 8s ease-in-out infinite 4s;
}

.card-4 {
    bottom: 30px;
    right: 150px;
    animation: float4 8s ease-in-out infinite 6s;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(-3deg); }
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-pink);
    color: white;
    border: 2px solid rgba(236, 72, 153, 0.3);
    box-shadow: var(--shadow-glow);
    font-weight: 600;
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.6);
    background: var(--gradient-accent);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-color);
    backdrop-filter: blur(10px);
    font-weight: 600;
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-warning {
    background: #ffc107;
    color: #212529;
}

.btn-warning:hover {
    background: #e0a800;
}

/* Sections */
.mods-section, .upload-section, .gunpack-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mods-section h2, .upload-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

/* Search Bar */
.search-bar {
    display: flex;
    max-width: 500px;
    margin: 0 auto 50px;
    background: #f8f9fa;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-bar input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
}

.search-bar button {
    padding: 15px 20px;
    background: #667eea;
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-bar button:hover {
    background: #5a6fd8;
}

/* Mods Grid */
.mods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-items: center;
}

.mod-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    width: 100%;
    max-width: 350px;
}

.mod-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.mod-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.mod-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s ease-in-out infinite;
}

.mod-content {
    padding: 25px;
}

.mod-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-family: 'Orbitron', monospace;
}

.mod-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.mod-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.mod-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.mod-download {
    background: var(--gradient-secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.mod-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Upload Form */
.upload-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: #667eea;
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
}

.close {
    font-size: 2rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-content {
    display: none;
}

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

/* Server Status */
.server-status {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.status-label {
    font-weight: 600;
    color: #333;
}

.status-value {
    color: #666;
}

.server-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Log Container */
.log-container {
    background: #1e1e1e;
    color: #00ff00;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    max-height: 400px;
    overflow-y: auto;
}

.log-controls {
    margin-bottom: 20px;
}

/* Users Table */
.users-table {
    overflow-x: auto;
}

.users-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.users-table th,
.users-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.users-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.users-table tr:hover {
    background: #f8f9fa;
}

/* Settings Form */
.settings-form {
    max-width: 500px;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--text-secondary);
}

/* Admin Login Styles */
.admin-login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.admin-login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(192, 132, 252, 0.05) 0%, transparent 50%);
    animation: particles 20s ease-in-out infinite;
}

.admin-login-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
}

.admin-login-card.success-animation {
    animation: successPulse 0.6s ease-in-out;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.admin-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.admin-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-glow);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from { box-shadow: 0 0 20px rgba(139, 92, 246, 0.5); }
    to { box-shadow: 0 0 30px rgba(139, 92, 246, 0.8); }
}

.admin-login-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.admin-login-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.admin-login-form {
    margin-bottom: 30px;
}

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

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.password-toggle:hover {
    color: var(--primary-color);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.forgot-password:hover {
    color: var(--accent-color);
}

.admin-login-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.admin-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.admin-login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.admin-login-btn.success {
    background: var(--success-color);
}

.admin-login-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.security-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success-color);
    font-size: 0.9rem;
}

.back-to-site a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.back-to-site a:hover {
    color: var(--primary-color);
}

.admin-login-sidebar {
    display: none;
    width: 300px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-left: 40px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.sidebar-content h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
}

.feature-list li i {
    color: var(--primary-color);
    width: 20px;
}

.security-tips h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1rem;
}

.security-tips ul {
    list-style: none;
}

.security-tips li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.security-tips li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 3s ease-in-out infinite;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Gunpack Section */
.gunpack-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--text-light);
}

.gunpack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gunpack-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
    position: relative;
}

.gunpack-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.gunpack-image {
    height: 200px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.gunpack-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.gunpack-content {
    padding: 25px;
}

.gunpack-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Orbitron', monospace;
}

.gunpack-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.gunpack-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.gunpack-stats .stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.gunpack-stats .stat i {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-heavy);
        padding: 20px 0;
        border-top: 1px solid rgba(139, 92, 246, 0.2);
    }

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

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 50px;
    }

    .hero-content {
        margin: 0;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-visual {
        display: none;
    }

    .mods-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .mod-card {
        max-width: 100%;
    }

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

    .server-controls {
        flex-direction: column;
    }

    .admin-tabs {
        flex-wrap: wrap;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-admin-link {
        margin-top: 15px;
    }

    .admin-text-link {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-admin-link {
        margin-top: 15px;
    }

    .admin-text-link {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Discover Button Styles */
.btn-discover {
    position: relative;
    background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
    border: none;
    border-radius: 50px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    min-width: 200px;
    height: 60px;
    margin: 2rem auto;
    display: block;
}

.btn-discover:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.btn-discover:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0 2rem;
    height: 100%;
    z-index: 2;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-discover i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-discover:hover i {
    transform: rotate(15deg) scale(1.1);
}

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

.btn-discover:hover .btn-glow {
    left: 100%;
}

/* Page Transition Animations */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

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

.page-transition-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 1.5s infinite;
}

.page-transition-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

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

/* Hero Content Layout */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Mod Blocks Styles */
.mod-block {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mod-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mod-block-header:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
}

.mod-block-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.mod-block-title i:first-child {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.dropdown-arrow {
    font-size: 1rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.mod-block-header:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.add-mod-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.add-mod-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.mod-block-content {
    padding: 0;
}

.mod-item {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.mod-item:hover {
    background: rgba(139, 92, 246, 0.05);
}

.mod-item.active {
    background: rgba(139, 92, 246, 0.15);
    border-left: 3px solid var(--primary-color);
}

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

.mod-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.gun-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.mod-item-arrow {
    margin-right: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.mod-item:hover .mod-item-arrow {
    transform: translateX(5px);
}

.mod-item-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.mod-item-actions {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.mod-item-actions i {
    cursor: pointer;
    transition: color 0.3s ease;
}

.mod-item-actions i:hover {
    color: var(--primary-color);
}

/* Mods Grid Styles */
.mods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mod-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(109, 40, 217, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.mod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-color);
}

.mod-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.mod-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.mod-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

/* Guns Section */
.guns-section {
    margin-top: 4rem;
}

.guns-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.guns-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

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

.gun-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(109, 40, 217, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.gun-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(109, 40, 217, 0.3);
    border-color: var(--primary-color);
}

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

.gun-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Mod Detail Page Styles */
.mod-detail-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.mod-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(15, 15, 15, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(109, 40, 217, 0.3);
    backdrop-filter: blur(10px);
}

.mod-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    flex-shrink: 0;
}

.mod-icon-large.gun-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.mod-info {
    flex: 1;
}

.mod-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.mod-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.mod-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.mod-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mod-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mod-screenshots h3,
.mod-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.screenshot-placeholder {
    aspect-ratio: 16/9;
    background: rgba(15, 15, 15, 0.9);
    border: 2px dashed rgba(109, 40, 217, 0.4);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.screenshot-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.detail-grid {
    display: grid;
    gap: 1rem;
}

.detail-item {
    padding: 1rem;
    background: rgba(15, 15, 15, 0.7);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

/* Chat Button Styles */
.chat-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(109, 40, 217, 0.6);
}

.chat-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.admin-count {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(109, 40, 217, 0.3);
    border-radius: 20px;
    padding: 5px 12px;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.admin-count i {
    color: var(--primary-color);
    font-size: 0.7rem;
}

/* Chat Modal Styles */
.chat-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.chat-modal.active {
    display: flex;
}

.chat-modal-content {
    width: 90%;
    max-width: 500px;
    height: 80%;
    max-height: 600px;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(109, 40, 217, 0.3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    max-width: 80%;
}

.chat-message.admin-message {
    align-self: flex-start;
}

.chat-message.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.admin-message .message-avatar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.user-message .message-avatar {
    background: rgba(109, 40, 217, 0.2);
    color: var(--primary-color);
}

.message-content {
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(109, 40, 217, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    flex: 1;
}

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

.message-sender {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-light);
    opacity: 0.7;
}

.message-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-input-container {
    padding: 1rem;
    background: rgba(15, 15, 15, 0.8);
    border-top: 1px solid rgba(109, 40, 217, 0.2);
    display: flex;
    gap: 0.75rem;
}

.chat-input-container input {
    flex: 1;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(109, 40, 217, 0.3);
    border-radius: 25px;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input-container input:focus {
    border-color: var(--primary-color);
}

.chat-send {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-send:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.4);
}

/* Mobile Responsive for New Elements */
@media (max-width: 768px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn-discover {
        min-width: 180px;
        height: 55px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .mods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .mod-header {
        flex-direction: column;
        text-align: center;
    }
    
    .mod-title {
        font-size: 2rem;
    }
    
    .mod-stats {
        justify-content: center;
    }
    
    .mod-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .screenshot-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-button-container {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-button {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .chat-modal-content {
        width: 95%;
        height: 85%;
    }
}
