/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #296cd1;
    --secondary-color: #57a0c0;
    --bg-dark: #0f0f0f;
    --bg-dark-secondary: #1a1a1a;
    --bg-dark-tertiary: #202020;
    --text-light: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.6);
    --accent-blue: #57a0c0;
    --accent-primary: #296cd1;
    
    /* Fonts */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 10px rgba(87, 160, 192, 0.6));
    transform: scale(1.05);
}

.logo i {
    color: var(--accent-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-blue);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-dropdown > .nav-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.nav-dropdown:hover > .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    border: 1px solid rgba(41,108,209,0.3);
    border-radius: 8px;
    min-width: 200px;
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: rgba(41,108,209,0.2);
    color: var(--accent-blue);
    padding-left: 2rem;
}

/* Nav Status & Join Button */
.nav-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
}

.nav-status-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(41,108,209,0.3);
}

.nav-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.nav-status-dot.online {
    background: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.nav-status-dot.offline {
    background: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.nav-status-text {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.nav-join-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(140deg, rgba(41,108,209,0.8) 0%, rgba(87,160,192,0.6) 100%);
    border: 1px solid rgba(87,160,192,0.5);
    border-radius: 25px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-join-btn:hover {
    background: linear-gradient(140deg, rgba(41,108,209,1) 0%, rgba(87,160,192,0.8) 100%);
    box-shadow: 0 0 20px rgba(87,160,192,0.5);
    transform: translateY(-2px);
}

.nav-join-btn i {
    font-size: 0.8rem;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-burger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

.nav-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-burger.active span:nth-child(2) {
    opacity: 0;
}

.nav-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    background-image: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?q=80&w=2071');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(87, 160, 192, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite;
}

.hero-slogan {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(140deg, rgba(41,108,209,0.8) 0%, rgba(87,160,192,0.6) 100%);
    color: var(--text-light);
    border: 1px solid rgba(87,160,192,0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(87, 160, 192, 0.6);
    background: rgba(41,108,209,0.9);
}

.btn-secondary {
    background: linear-gradient(140deg, rgba(87,160,192,0.8) 0%, rgba(41,108,209,0.6) 100%);
    color: var(--text-light);
    border: 1px solid rgba(87,160,192,0.5);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(87, 160, 192, 0.6);
    background: rgba(87,160,192,0.9);
}

.btn-donate {
    background: linear-gradient(140deg, rgba(255, 100, 100, 0.8) 0%, rgba(255, 150, 150, 0.6) 100%);
    color: var(--text-light);
    border: 1px solid rgba(255, 100, 100, 0.5);
}

.btn-donate:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 100, 100, 0.6);
    background: rgba(255, 100, 100, 0.9);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    color: var(--accent-blue);
}

/* ===================================
   SECTION STYLES
   =================================== */

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-blue));
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.section-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    max-width: 800px;
    margin: 1rem auto 0;
    line-height: 1.8;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    background: var(--bg-dark-secondary);
}

.about-content {
    display: grid;
    gap: 3rem;
    text-align: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(41,108,209,0.3);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(87,160,192,0.6);
    box-shadow: 0 0 15px rgba(87,160,192,0.4);
}

.stat-card i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.stat-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-gray);
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features {
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(41,108,209,0.3);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(87,160,192,0.6);
    box-shadow: 0 0 15px rgba(87,160,192,0.4);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(140deg, rgba(41,108,209,0.8) 0%, rgba(87,160,192,0.6) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===================================
   TEAM SECTION
   =================================== */

.team {
    background: var(--bg-dark-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-join-cta {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.team-card {
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(41,108,209,0.3);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(87,160,192,0.6);
    box-shadow: 0 0 15px rgba(87,160,192,0.4);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 108, 209, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    width: 50px;
    height: 50px;
    background: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 1.5rem;
    transition: var(--transition);
}

.team-social a:hover {
    transform: scale(1.2);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent-blue);
    font-weight: 600;
}

/* ===================================
   CONTENT CREATOR SECTION
   =================================== */

.creators {
    background: var(--bg-dark);
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.creator-card {
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(41,108,209,0.3);
}

.creator-card:hover {
    transform: translateY(-10px);
    border-color: rgba(87,160,192,0.6);
    box-shadow: 0 0 25px rgba(87,160,192,0.4);
}

.creator-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.creator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.creator-card:hover .creator-image img {
    transform: scale(1.1);
}

.creator-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
}

.live-badge {
    background: rgba(145, 70, 255, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulse-live 2s infinite;
    opacity: 0;
    transition: var(--transition);
}

.creator-card:hover .live-badge {
    opacity: 1;
}

@keyframes pulse-live {
    0%, 100% {
        box-shadow: 0 0 10px rgba(145, 70, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(145, 70, 255, 0.8);
    }
}

.live-badge i {
    color: #ff0000;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.creator-info {
    padding: 1.5rem;
    text-align: center;
}

.creator-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.creator-category {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.creator-category i {
    color: #9146ff;
    font-size: 1.1rem;
}

.btn-twitch {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(140deg, rgba(145, 70, 255, 0.8) 0%, rgba(100, 65, 165, 0.6) 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(145, 70, 255, 0.5);
}

.btn-twitch:hover {
    background: rgba(145, 70, 255, 0.9);
    box-shadow: 0 0 20px rgba(145, 70, 255, 0.6);
    transform: translateY(-2px);
}

.btn-twitch i {
    font-size: 1.2rem;
}

/* ===================================
   SERVER INFO SECTION
   =================================== */

.server-info {
    background: var(--bg-dark);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    min-width: 0;
    border: 1px solid rgba(41,108,209,0.3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    border-color: rgba(87,160,192,0.6);
    box-shadow: 0 0 15px rgba(87,160,192,0.4);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(140deg, rgba(41,108,209,0.8) 0%, rgba(87,160,192,0.6) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: #00ff00;
}

.status-text {
    font-weight: 600;
    color: #00ff00;
}

.player-count {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-blue);
    margin: 1rem 0;
}

.players-text {
    color: var(--text-gray);
}

.connect-info {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.connect-info input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(41,108,209,0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: monospace;
}

.btn-copy {
    padding: 0.8rem 1rem;
    background: linear-gradient(140deg, rgba(41,108,209,0.8) 0%, rgba(87,160,192,0.6) 100%);
    border: 1px solid rgba(87,160,192,0.5);
    border-radius: 8px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.btn-copy:hover {
    background: rgba(41,108,209,0.9);
    box-shadow: 0 0 10px rgba(87,160,192,0.5);
}

.info-card > *:last-child {
    margin-top: auto;
}

/* Server Status Styles */
.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.status-text {
    font-weight: 600;
    color: #00ff00;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.server-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.stat-item i {
    color: var(--accent-blue);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ===================================
   NEWS SECTION
   =================================== */

.news-section {
    background: var(--bg-dark-secondary);
    padding: 4rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(41,108,209,0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(41,108,209,0.2);
    border-color: rgba(41,108,209,0.4);
}

.news-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(41,108,209,0.3);
}

.news-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(140deg, rgba(41,108,209,0.8) 0%, rgba(87,160,192,0.6) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.news-icon.team {
    background: linear-gradient(140deg, rgba(87,160,192,0.8) 0%, rgba(41,108,209,0.6) 100%);
}

.news-header h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin: 0;
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid var(--accent-blue);
    transition: var(--transition);
}

.news-item:hover {
    background: rgba(0, 0, 0, 0.4);
    border-left-color: var(--accent-light);
}

.news-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.news-badge.faction {
    background: rgba(41,108,209,0.2);
    color: var(--accent-blue);
    border: 1px solid rgba(41,108,209,0.4);
}

.news-badge.team {
    background: rgba(87,160,192,0.2);
    color: var(--accent-light);
    border: 1px solid rgba(87,160,192,0.4);
}

.news-item h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0.5rem 0;
}

.news-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.news-date i {
    color: var(--accent-blue);
}

/* General News Timeline */
.general-news {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(41,108,209,0.2);
    border-radius: 15px;
    padding: 2rem;
}

.general-news h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.general-news h3 i {
    color: var(--accent-blue);
}

.news-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-date {
    min-width: 120px;
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .timeline-date {
        min-width: auto;
    }
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery {
    background: var(--bg-dark-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 108, 209, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--text-light);
}

/* ===================================
   LIGHTBOX
   =================================== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.lightbox.active {
    display: flex;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    pointer-events: none;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 3rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-blue);
}

.lightbox-prev,
.lightbox-next {
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(41, 108, 209, 0.9) !important;
    border: 2px solid rgba(87, 160, 192, 0.8) !important;
    color: var(--text-light) !important;
    font-size: 2rem !important;
    padding: 1rem !important;
    cursor: pointer !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--transition) !important;
    z-index: 999999 !important;
    pointer-events: all !important;
}

.lightbox-prev {
    left: 20px !important;
}

.lightbox-next {
    right: 20px !important;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(87, 160, 192, 0.9) !important;
    box-shadow: 0 0 15px rgba(87,160,192,0.6) !important;
}

.lightbox-prev i,
.lightbox-next i {
    pointer-events: none;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--bg-dark-tertiary);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
}

.footer-social a i {
    color: #ffffff;
}

.footer-social a:hover {
    background: linear-gradient(140deg, rgba(41,108,209,0.8) 0%, rgba(87,160,192,0.6) 100%);
    transform: translateY(-5px);
    box-shadow: 0 0 10px rgba(87,160,192,0.5);
}

/* Social Links (alternative Klasse) */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
    text-decoration: none;
}

.social-link i {
    color: #ffffff;
}

.social-link:hover {
    background: linear-gradient(140deg, rgba(41,108,209,0.8) 0%, rgba(87,160,192,0.6) 100%);
    transform: translateY(-5px);
    box-shadow: 0 0 10px rgba(87,160,192,0.5);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 8px rgba(87,160,192,0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
}

.footer-bottom i {
    color: var(--accent-orange);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(87, 160, 192, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(87, 160, 192, 0.8));
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1400px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 15, 15, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        gap: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-burger {
        display: flex;
    }
    
    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(41,108,209,0.1);
        border: none;
        margin-top: 0.5rem;
    }
    
    .nav-dropdown > .nav-link i {
        transform: rotate(0) !important;
    }
    
    /* Mobile Status & Join */
    .nav-status {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-slogan {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        padding: 0 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .features-grid,
    .team-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-slogan {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   COOKIE BANNER
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    border-top: 1px solid rgba(41, 108, 209, 0.3);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-text h4 i {
    color: var(--accent-blue);
}

.cookie-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(140deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(41, 108, 209, 0.4);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-text {
        min-width: auto;
    }
}