/* ============================================
   HELLGRAVE EXODUS - MODERN DESIGN
   ============================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    min-height: 100vh;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
    overflow: visible;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.header {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 50%, #1a1f3a 100%);
    color: white;
    padding: 30px 25px;
    border-bottom: 5px solid #ff6b6b;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.logo h1 {
    font-size: 2.8rem;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo p {
    font-size: 0.95rem;
    opacity: 0.85;
    font-weight: 500;
}

.server-status {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    padding: 12px 18px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.status-item:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

.status-item i {
    font-size: 1.1rem;
}

.status-item .online {
    color: #2ecc71;
    font-weight: 600;
}

.status-item .offline {
    color: #e74c3c;
    font-weight: 600;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #2d3561;
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    right: 0;
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    color: white;
    padding: 12px 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.dropdown-content a:hover,
.dropdown-content a.active {
    background: #ff6b6b;
    color: white;
}

/* ============================================
   NAVIGATION STYLES
   ============================================ */

.navigation {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-menu {
    display: flex;
    list-style: none;
    flex: 1;
    flex-wrap: wrap;
}

.nav-menu li {
    flex: 1;
    min-width: 120px;
}

.nav-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 15px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #e8f4f8;
    color: #ff6b6b;
    border-bottom-color: #ff6b6b;
}

.nav-account {
    display: flex;
    gap: 0;
    align-items: center;
    border-left: 1px solid #e9ecef;
}

.nav-account a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 15px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    font-size: 0.95rem;
    border-left: 1px solid #e9ecef;
}

.nav-account a:hover,
.nav-account a.active {
    background: #e8f4f8;
    color: #ff6b6b;
    border-bottom-color: #ff6b6b;
}

.admin-link {
    background: linear-gradient(135deg, #ff6b6b, #ff8787) !important;
    color: white !important;
}

.admin-link:hover {
    background: linear-gradient(135deg, #ff5252, #ff6b6b) !important;
}

/* ============================================
   MAIN CONTENT STYLES
   ============================================ */

.main-content {
    padding: 40px 25px;
    min-height: calc(100vh - 300px);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.main-column {
    min-width: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 50%, #1a1f3a 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5252, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    margin-bottom: 50px;
}

.features h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: #1a1f3a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features h2 i {
    color: #ff6b6b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: #ff6b6b;
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.15);
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1f3a;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   NEWS SECTION
   ============================================ */

.news {
    margin-bottom: 50px;
}

.news h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: #1a1f3a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.news h2 i {
    color: #ff6b6b;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    border-color: #ff6b6b;
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.15);
    transform: translateY(-8px);
}

.news-header {
    padding: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.news-header h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a1f3a;
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #999;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content {
    padding: 20px;
    flex: 1;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.news-footer {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
}

.read-more {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* ============================================
   SERVER INFO SECTION
   ============================================ */

.server-info-home {
    margin-bottom: 50px;
}

.server-info-home h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
    color: #1a1f3a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.server-info-home h2 i {
    color: #ff6b6b;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #ff6b6b;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.1);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #1a1f3a;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 10px;
}

.rate-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.rate-item:last-child {
    border-bottom: none;
}

.rate-item span:first-child {
    color: #666;
    font-weight: 500;
}

.rate-value {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 50%, #1a1f3a 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* ============================================
   SIDEBAR STYLES
   ============================================ */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.widget {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.widget:hover {
    border-color: #ff6b6b;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.1);
}

.widget h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #1a1f3a;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 12px;
}

.widget h3 i {
    color: #ff6b6b;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.stat-value {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.2rem;
}

.player-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.player-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.player-item:hover {
    background: #e8f4f8;
}

.player-item .rank {
    color: #ff6b6b;
    font-weight: 700;
    min-width: 35px;
}

.player-item .name {
    flex: 1;
    color: #1a1f3a;
    font-weight: 600;
    margin: 0 10px;
}

.player-item .level {
    color: #666;
    font-size: 0.85rem;
}

.player-item .vocation {
    color: #999;
    font-size: 0.8rem;
}

.boosted-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.boosted-name {
    font-weight: 700;
    color: #1a1f3a;
    margin-bottom: 8px;
}

.boosted-date {
    font-size: 0.85rem;
    color: #999;
}

.server-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
}

.info-value {
    color: #ff6b6b;
    font-weight: 700;
}

.widget-link {
    display: inline-block;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.widget-link:hover {
    color: #ff5252;
    text-decoration: underline;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.footer {
    background: #1a1f3a;
    color: white;
    padding: 40px 25px 20px;
    border-top: 5px solid #ff6b6b;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 30px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.footer-section p {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #ff6b6b;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

/* ============================================
   FORM STYLES (Login, Create Account, etc.)
   ============================================ */

.page-header {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px solid #f0f0f0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    color: #1a1f3a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-header h1 i {
    color: #ff6b6b;
}

.page-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #ff6b6b;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
    background: #f8f9fa;
    cursor: not-allowed;
    opacity: 0.6;
}

.form-group small {
    color: #999;
    font-size: 0.85rem;
    margin-top: -5px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.form-actions .btn {
    flex: 1;
    min-width: 150px;
}

.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

.alert i {
    font-size: 1.2rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 2px solid #bee5eb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 2px solid #ffeaa7;
}

.login-info,
.create-account-info {
    margin-top: 30px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #ff6b6b;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.1);
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 1.1rem;
    color: #1a1f3a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: #ff6b6b;
}

.info-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Status Badges */
.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status.online {
    background: #d4edda;
    color: #155724;
}

.status.offline {
    background: #f8d7da;
    color: #721c24;
}

.status i {
    font-size: 0.7rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        grid-column: 1;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .logo h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
    }

    .nav-menu li {
        min-width: auto;
    }

    .nav-menu a,
    .nav-account a {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .features-grid,
    .news-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .form-container {
        padding: 25px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        box-shadow: none;
    }

    .main-content {
        padding: 20px 15px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo p {
        font-size: 0.85rem;
    }

    .hero {
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .features h2,
    .news h2,
    .server-info-home h2 {
        font-size: 1.5rem;
    }

    .feature-card,
    .news-card,
    .info-card,
    .widget {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 20px;
    }

    .page-header {
        padding: 20px;
    }

    .page-header h1 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 8px;
    }
}


/* ============================================
   TABLE STYLES
   ============================================ */

.table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    color: white;
}

.table thead th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 3px solid #ff6b6b;
}

.table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.table tbody tr:hover {
    background: #f8f9fa;
}

.table tbody tr:last-child {
    border-bottom: none;
}

.table tbody td {
    padding: 15px;
    color: #2c3e50;
    font-size: 0.95rem;
}

.table .player-name {
    font-weight: 600;
    color: #1a1f3a;
}

.table .level {
    font-weight: 700;
    color: #ff6b6b;
    font-size: 1.1rem;
}

.table .vocation {
    font-weight: 500;
}

.staff-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #ff6b6b;
    color: white;
    margin-left: 8px;
}

.player-type {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.player-type.staff {
    background: #ff6b6b;
    color: white;
}

.player-type.player {
    background: #95a5a6;
    color: white;
}

/* ============================================
   SEARCH FORM STYLES
   ============================================ */

.search-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.form-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #2c3e50;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* ============================================
   RESULTS INFO
   ============================================ */

.results-info {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

.results-info p {
    margin: 0;
    color: #2c3e50;
    font-weight: 500;
}

/* ============================================
   PAGINATION STYLES
   ============================================ */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination-info {
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    font-weight: 600;
    color: #2c3e50;
}

/* ============================================
   NO RESULTS STYLES
   ============================================ */

.no-results {
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    text-align: center;
    margin-bottom: 30px;
}

.no-results i {
    font-size: 4rem;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.no-results h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.no-results p {
    color: #7f8c8d;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* ============================================
   VOCATION COLORS
   ============================================ */

.vocation-0 { color: #95a5a6; } /* None */
.vocation-1, .vocation-5 { color: #9b59b6; } /* Sorcerer */
.vocation-2, .vocation-6 { color: #27ae60; } /* Druid */
.vocation-3, .vocation-7 { color: #f39c12; } /* Paladin */
.vocation-4, .vocation-8 { color: #e74c3c; } /* Knight */

/* ============================================
   RESPONSIVE TABLES
   ============================================ */

@media (max-width: 768px) {
    .table-container {
        overflow-x: auto;
    }
    
    .table {
        min-width: 600px;
    }
    
    .form-inline {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-direction: column;
    }
}
