/* ================================================
   AROCORE - COMPLETE CSS SYSTEM 2026
   ================================================ */

/* ================================================
   1. RESET & VARIABLES
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #141414;
    --bg-elevated: #1a1a1a;
    --bg-card: #202024;
    --bg-hover: #2a2a2e;
    --bg-input: #3e3e42;
    --primary-blue: #3b82f6;
    --primary-blue-dark: #2563eb;
    --primary-blue-light: #60a5fa;
    --accent-ice: #94a3b8;
    --ice-light: #cbd5e1;
    --ice-gray: #94a3b8;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --gradient-ice: linear-gradient(135deg, #94a3b8 0%, #cbd5e1 100%);
}

/* ================================================
   2. BASE STYLES
   ================================================ */
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    padding-top: 60px;
}

a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ================================================
   3. NAVIGATION - KOMPLETT ÜBERARBEITET
   ================================================ */
.epic-nav {
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    z-index: 1001;
    flex-shrink: 0;
}

.nav-logo i {
    color: var(--primary-blue);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Nav Menu Container */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: space-between;
    margin-left: 32px;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link i:first-child {
    font-size: 14px;
}

/* Dropdown Wrapper */
.nav-dropdown-wrapper {
    position: relative;
}

.nav-link.has-dropdown {
    padding-right: 10px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s;
    margin-left: 4px;
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    z-index: 100;
}

.nav-dropdown-wrapper:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 8px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.dropdown-item i {
    width: 18px;
    font-size: 14px;
    color: var(--primary-blue);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* User Dropdown */
.nav-user-dropdown {
    position: relative;
}

.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-primary);
    font-family: inherit;
}

.nav-user-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.nav-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    object-fit: cover;
}

.nav-user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-user-btn i.fa-chevron-down {
    font-size: 10px;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.nav-user-dropdown.active .nav-user-btn i.fa-chevron-down {
    transform: rotate(180deg);
}

/* User Dropdown Menu */
.nav-user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    overflow: hidden;
}

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

.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
}

.user-dropdown-header img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
}

.user-dropdown-header strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.user-dropdown-header .user-role {
    display: block;
    font-size: 12px;
    color: var(--primary-blue);
    text-transform: uppercase;
    font-weight: 600;
}

.user-dropdown-divider {
    height: 1px;
    background: var(--border-color);
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
}

.user-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.user-dropdown-item.logout {
    color: #ef4444;
}

.user-dropdown-item.logout:hover {
    background: rgba(239, 68, 68, 0.1);
}

.user-dropdown-item i {
    width: 18px;
    font-size: 14px;
}

/* Primary Nav Button */
.nav-btn-primary {
    padding: 10px 20px;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    cursor: pointer;
    font-family: inherit;
}

.nav-btn-primary:hover {
    background: var(--primary-blue-dark);
    color: #fff;
}

.nav-btn-primary i {
    font-size: 16px;
}

/* Mobile Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

/* ================================================
   MOBILE NAVIGATION - RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav-overlay {
        display: block;
        pointer-events: none;
    }
    
    .mobile-nav-overlay.active {
        pointer-events: auto;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-elevated);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0;
        margin-left: 0;
        gap: 0;
        transform: translateX(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        padding: 16px;
        border-radius: 10px;
        font-size: 15px;
        justify-content: flex-start;
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .nav-link i:first-child {
        width: 24px;
        font-size: 16px;
        color: var(--primary-blue);
    }
    
    /* Mobile Dropdown */
    .nav-dropdown-wrapper {
        width: 100%;
    }
    
    .nav-link.has-dropdown {
        width: 100%;
        justify-content: flex-start;
    }
    
    .nav-link.has-dropdown span {
        flex: 1;
        text-align: left;
    }
    
    .dropdown-arrow {
        margin-left: auto;
        font-size: 12px;
    }
    
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none !important;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: 10px;
        padding: 8px;
        margin: 8px 0 0 0;
        box-shadow: none;
        min-width: 100%;
    }
    
    .nav-dropdown.active {
        display: block !important;
    }
    
    .nav-dropdown-wrapper.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .nav-dropdown-wrapper:hover .nav-dropdown:not(.active) {
        display: none !important;
    }
    
    .dropdown-item {
        padding: 14px 16px;
        border-radius: 8px;
    }
    
    /* Mobile Nav Actions */
    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 12px;
    }
    
    /* Mobile User Dropdown */
    .nav-user-dropdown {
        width: 100%;
    }
    
    .nav-user-btn {
        width: 100%;
        padding: 12px 16px;
        border-radius: 10px;
        justify-content: flex-start;
    }
    
    .nav-user-avatar {
        width: 40px;
        height: 40px;
    }
    
    .nav-user-name {
        flex: 1;
        max-width: none;
        font-size: 15px;
    }
    
    .nav-user-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 8px;
        border-radius: 10px;
        min-width: 100%;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        border: none;
    }
    
    .nav-user-dropdown-menu.active {
        display: block;
    }
    
    .user-dropdown-header {
        padding: 14px 16px;
        background: transparent;
    }
    
    .user-dropdown-item {
        padding: 14px 16px;
    }
    
    /* Mobile Primary Button */
    .nav-btn-primary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 10px;
    }
}

/* ================================================
   3. NAVIGATION
   PROFILE & SETTINGS PAGES
   ================================================ */

.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

.page-title {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.page-title > i {
    font-size: 38px;
    color: var(--primary-blue);
    margin-top: 4px;
}

.page-title h1 {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: var(--text-primary);
}

.page-title p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

/* Profile Banner */
.profile-banner-section {
    margin-bottom: 32px;
}

.profile-banner-gradient {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.profile-user-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: -50px;
    padding: 0 32px;
}

.profile-user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--bg-dark);
}

.profile-user-name {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-primary);
}

/* Profile Header Simple */
.profile-header-simple {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.profile-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
}

.profile-info-simple h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-primary);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 20px;
}

.settings-stack {
    display: grid;
    gap: 20px;
}

.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.content-card.card-danger {
    border-color: rgba(239, 68, 68, 0.3);
}

.content-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.content-card-header i {
    font-size: 20px;
    color: var(--primary-blue);
}

.card-danger .content-card-header i,
.card-danger .content-card-header h2 {
    color: #ef4444;
}

.content-card-header h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

/* Data Rows */
.data-rows {
    display: grid;
    gap: 12px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.data-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.data-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Stat Rows */
.stat-rows {
    display: grid;
    gap: 12px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.stat-icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    color: var(--primary-blue);
    font-size: 22px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Role Tags */
.role-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid;
}

.role-tag.role-user {
    background: rgba(148, 163, 184, 0.1);
    color: var(--ice-gray);
    border-color: rgba(148, 163, 184, 0.3);
}

.role-tag.role-vip {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    border-color: rgba(59, 130, 246, 0.3);
}

.role-tag.role-vip_plus {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border-color: rgba(139, 92, 246, 0.3);
}

.role-tag.role-premium {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.3);
}

.role-tag.role-moderator {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
}

.role-tag.role-admin {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.role-tag.role-owner {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(139, 92, 246, 0.2));
    color: #fff;
    border-color: rgba(239, 68, 68, 0.4);
}

/* Form Fields */
.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-field small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

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

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Feature Boxes */
.feature-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
}

.feature-box:last-child {
    margin-bottom: 0;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    color: var(--primary-blue);
    font-size: 22px;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* Status Tags */
.status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid;
}

.status-tag.status-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
}

/* Danger Alert */
.danger-alert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
}

.danger-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.danger-desc {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 500px;
}

/* Buttons */
.btn-primary {
    padding: 12px 24px;
    background: var(--gradient-green);
    color: #fff;
    border: 1px solid var(--primary-blue);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover:not(:disabled) {
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.5);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary {
    padding: 10px 20px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s;
}

.btn-secondary:hover:not(:disabled) {
    border-color: var(--primary-blue);
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-danger {
    padding: 10px 20px;
    background: #ef4444;
    color: #fff;
    border: 1px solid #ef4444;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-danger:hover:not(:disabled) {
    background: #dc2626;
}

.btn-danger:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Sessions List */
.sessions-list {
    display: grid;
    gap: 12px;
}

.session-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.session-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.session-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    color: var(--primary-blue);
    font-size: 20px;
}

.session-device {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.session-device i {
    font-size: 16px;
}

.current-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.session-details {
    font-size: 13px;
    color: var(--text-muted);
}

.btn-secondary-small {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    color: #ef4444;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary-small:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-user-header {
        flex-direction: column;
        text-align: center;
    }
    
    .danger-alert,
    .feature-box {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .session-item {
        flex-direction: column;
        gap: 12px;
    }
}

/* ================================================
   4. BUTTONS
   ================================================ */
.nav-btn-secondary,
.nav-btn-primary,
.btn-hero {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    line-height: 1;
}

.nav-btn-secondary,
.btn-hero.secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.nav-btn-secondary:hover,
.btn-hero.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-btn-primary,
.btn-hero.primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: none;
    transition: all 0.2s;
}

.nav-btn-primary:hover,
.btn-hero.primary:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-color: rgba(59, 130, 246, 0.5);
}

.btn-hero i {
    font-size: 16px;
    line-height: 1;
}

/* ================================================
   5. HERO SLIDER
   ================================================ */
.hero-slider {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: -60px;
    padding-top: 60px;
}

.hero-slide {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: block;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.5) 0%, rgba(20, 20, 20, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 60px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ================================================
   6. SERVER CARD
   ================================================ */
.server-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
}

.panel-header {
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.status-text {
    font-size: 14px;
    font-weight: 600;
    color: #22c55e;
}

.ip-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
}

.ip-row code {
    font-family: 'Monaco', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
}

.ip-row button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px 10px;
    transition: color 0.2s;
}

.ip-row button:hover {
    color: var(--primary-blue);
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0;
}

.panel-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.2s;
}

.panel-item:hover {
    background: rgba(59, 130, 246, 0.05);
}

.panel-item i {
    font-size: 24px;
    color: var(--primary-blue);
}

.panel-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.panel-info span {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-info strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.panel-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0;
}

.panel-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.panel-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
}

.panel-link i {
    font-size: 20px;
}

.panel-link span {
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .panel-grid {
        grid-template-columns: 1fr;
    }
}
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.quick-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.quick-link i {
    font-size: 20px;
    color: var(--primary-blue);
}

/* ================================================
   7. SECTIONS
   ================================================ */
.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ================================================
   8. GAMEMODE SELECTOR
   ================================================ */
.gamemode-selector {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gamemode-selector h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gamemode-selector h2 i {
    color: var(--primary-blue);
}

.gamemode-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.gamemode-btn {
    padding: 16px 20px;
    background: rgba(59, 130, 246, 0.05);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.gamemode-btn i {
    font-size: 20px;
    color: var(--primary-blue);
}

.gamemode-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    color: var(--text-primary);
}

.gamemode-btn:active,
.gamemode-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}

.gamemode-btn:active i,
.gamemode-btn.active i {
    color: #fff;
}

/* ================================================
   9. GAME CARDS
   ================================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.game-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-blue);
    color: #fff;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.game-content {
    padding: 28px;
}

.game-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.game-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.game-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.game-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.game-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.game-features i {
    color: var(--primary-blue);
    font-size: 14px;
}

/* ================================================
   10. TEAM CARDS
   ================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.team-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s;
}

.team-card:hover .team-avatar {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

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

.team-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.team-role-badge.owner {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
}

.team-role-badge.developer {
    background: rgba(34, 211, 238, 0.15);
    border: 1px solid #22d3ee;
    color: #22d3ee;
}

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

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

.team-role-badge.builder {
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid #ec4899;
    color: #ec4899;
}

.team-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.team-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
}

.team-socials a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.team-join-box {
    margin-top: 64px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.team-join-box i.fa-user-plus {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 24px;
    display: block;
}

.team-join-box h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.team-join-box p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================
   11. FAQ
   ================================================ */
.faq-grid {
    display: grid;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}

.faq-question span {
    flex: 1;
}

.faq-question .faq-icon {
    color: var(--primary-blue);
    font-size: 18px;
    margin-right: 12px;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question i:last-child {
    font-size: 14px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i:last-child {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================================
   12. VIP PLANS - CASTPLAY.PL STYLE
   ================================================ */

.vip-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.vip-card-new {
    background: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.vip-card-new.featured {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border-color: #3b82f6;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

.vip-featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.vip-card-top {
    padding: 32px 24px 16px;
}

.vip-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.vip-card-new.featured .vip-label {
    color: rgba(255, 255, 255, 0.9);
}

.vip-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.vip-character {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.vip-character img {
    height: 220px;
    width: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

.vip-buy-btn {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff;
    font-family: inherit;
}

.vip-card-new:not(.featured) .vip-buy-btn {
    background: rgba(59, 130, 246, 0.1);
}

.vip-buy-btn:hover {
    background: rgba(59, 130, 246, 0.3);
}

.vip-buy-btn span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vip-buy-btn strong {
    font-size: 18px;
    font-weight: 800;
}

/* Feature Comparison */
.vip-features-section {
    max-width: 1000px;
    margin: 0 auto;
}

.vip-features-grid {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.feature-item i {
    font-size: 20px;
    color: var(--primary-blue);
    margin-top: 4px;
}

.feature-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.comparison-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.comparison-col {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-col.featured {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.15) 0%, var(--bg-elevated) 100%);
    border-color: var(--primary-blue);
}

.col-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.comparison-col.featured .col-header {
    background: var(--primary-blue);
    color: #fff;
}

.col-item {
    padding: 16px 12px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-primary);
}

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

.col-item i.fa-check {
    color: var(--primary-blue);
    font-size: 16px;
}

.col-item i.fa-times {
    color: #ef4444;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .vip-grid-new {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .vip-features-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .comparison-columns {
        grid-template-columns: 1fr;
    }
}



.vip-price span {
    font-size: 18px;
    color: var(--text-muted);
}



.vip-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.vip-features i {
    color: var(--primary-blue);
    font-size: 16px;
}


.vip-btn:hover {
    background: var(--primary-blue-dark);
}

/* ================================================
   13. AUTH BOXES
   ================================================ */
.auth-container {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.auth-box {
    background: #2a2a2e !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px;
    padding: 60px 50px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.auth-box h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.auth-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    font-size: 15px;
}

.auth-box h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

.auth-box p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--bg-hover);
}

.auth-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 24px;
}

.auth-submit:hover {
    background: var(--primary-blue-dark);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 13px;
}

.auth-footer a {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ================================================
   14. DISCORD LOGIN BUTTON
   ================================================ */
.discord-login-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #fff;
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: 24px;
}

.discord-login-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-color: rgba(59, 130, 246, 0.8);
}

.discord-login-btn i {
    font-size: 20px;
}

/* ================================================
   15. SERVER PAGE
   ================================================ */
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.server-mode-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s;
}

.server-mode-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.server-mode-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.server-mode-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.server-mode-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.server-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #22c55e;
}

.server-status-badge .status-dot {
    width: 6px;
    height: 6px;
}

/* ================================================
   15. FOOTER
   ================================================ */
.epic-footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 24px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 18px;
    transition: all 0.2s;
}

.footer-socials a:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section h4 i {
    color: var(--primary-blue);
    font-size: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ================================================
   16. RESPONSIVE - WEITERE ANPASSUNGEN
   ================================================ */

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .game-grid {
        grid-template-columns: 1fr;
    }
    
    .gamemode-buttons {
        grid-template-columns: 1fr;
    }
    
    .quick-links {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .auth-box {
        padding: 32px 24px;
    }
    
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    
    .vip-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .server-card {
        padding: 20px;
    }
}

/* ================================================
   LOGIN PAGE - KOMPLETT NEU
   ================================================ */
.login-page-container {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.login-card {
    background: #1a1a1a;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 60px 50px;
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.login-icon i {
    font-size: 40px;
    color: #fff;
}

.login-card h1 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.login-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.login-discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 12px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.login-discord-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-color: rgba(59, 130, 246, 0.8);
}

.login-discord-btn i {
    font-size: 22px;
}

.login-info {
    margin-top: 32px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-info i {
    font-size: 14px;
}
