* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #1a1a1a;
    --dark-panel: #2d2d2d;
    --darker: #0f0f0f;
    --metallic: #6b7280;
    --silver: #9ca3af;
    --neon-blue: #00d9ff;
    --neon-cyan: #00ffff;
    --neon-green: #39ff14;
    --gold: #ffd700;
    --silver-medal: #c0c0c0;
    --bronze: #cd7f32;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--dark-bg);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

.diagonal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--dark-bg) 0%, 
        var(--dark-panel) 25%, 
        var(--dark-bg) 50%, 
        var(--darker) 75%, 
        var(--dark-bg) 100%);
    z-index: -2;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 217, 255, 0.03) 2px, rgba(0, 217, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 217, 255, 0.03) 2px, rgba(0, 217, 255, 0.03) 4px);
    z-index: -1;
    pointer-events: none;
}

.main-nav {
    position: sticky;
    top: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    z-index: 1000;
}

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

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hero-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    min-height: 500px;
    background-image: url('attached_assets/14_1762891857258.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.85) 0%, 
        rgba(26, 26, 26, 0.75) 40%,
        rgba(26, 26, 26, 0.6) 60%,
        rgba(26, 26, 26, 0.8) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(0, 217, 255, 0.05) 0%, 
        transparent 50%, 
        rgba(0, 255, 255, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.hero-left {
    flex: 1;
    z-index: 2;
}

.game-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        0 0 20px var(--neon-blue),
        0 0 40px var(--neon-blue),
        3px 3px 0 rgba(0, 0, 0, 0.5);
    letter-spacing: 8px;
    margin-bottom: 10px;
    line-height: 1;
}

.game-tagline {
    font-size: 18px;
    color: var(--neon-cyan);
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.download-btn {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border: none;
    padding: 20px 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.download-btn:hover::before {
    width: 300px;
    height: 300px;
}

.download-btn:hover {
    box-shadow: 
        0 0 30px var(--neon-blue),
        0 0 50px var(--neon-cyan),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.players-online {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--neon-green);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px var(--neon-green);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 20px var(--neon-green);
    }
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.character-silhouette {
    width: 500px;
    height: 500px;
    background-image: url('attached_assets/f6nk54fo55r51_1762891754564.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    position: relative;
    border: 3px solid var(--neon-blue);
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.5),
        0 0 80px rgba(0, 217, 255, 0.3),
        inset 0 0 100px rgba(0, 217, 255, 0.1);
    filter: contrast(1.1) saturate(1.2);
    animation: float 3s ease-in-out infinite;
}

.character-silhouette::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.15) 0%, 
        transparent 50%, 
        rgba(0, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.character-silhouette::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        var(--neon-blue), 
        var(--neon-cyan), 
        var(--neon-blue));
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
    animation: glow-rotate 4s linear infinite;
}

@keyframes glow-rotate {
    0%, 100% {
        opacity: 0.3;
        filter: blur(10px) hue-rotate(0deg);
    }
    50% {
        opacity: 0.5;
        filter: blur(15px) hue-rotate(30deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.free-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--neon-green), #2ecc71);
    padding: 15px 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    box-shadow: 0 0 20px var(--neon-green);
    animation: glow-badge 2s ease-in-out infinite;
    letter-spacing: 2px;
    z-index: 10;
}

@keyframes glow-badge {
    0%, 100% {
        box-shadow: 0 0 20px var(--neon-green);
    }
    50% {
        box-shadow: 0 0 40px var(--neon-green);
    }
}

.main-container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 250px 1fr 280px;
    gap: 20px;
}

.sidebar-panel,
.content-panel {
    background: rgba(45, 45, 45, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}

.sidebar-panel::before,
.content-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background: var(--neon-blue);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    opacity: 0.5;
}

.panel-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 217, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-icon {
    font-size: 20px;
}

.leaderboard {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leaderboard-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 12px;
    border-left: 3px solid var(--neon-blue);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.leaderboard-item:nth-child(even) {
    background: rgba(35, 35, 35, 0.8);
}

.leaderboard-item:hover {
    background: rgba(0, 217, 255, 0.1);
    border-left-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
    transform: translateX(5px);
}

.rank-badge {
    min-width: 30px;
    height: 30px;
    background: var(--dark-panel);
    border: 2px solid var(--neon-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
}

.rank-badge.gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #000000;
    box-shadow: 0 0 15px var(--gold);
}

.rank-badge.silver {
    background: var(--silver-medal);
    border-color: var(--silver-medal);
    color: #000000;
    box-shadow: 0 0 15px var(--silver-medal);
}

.rank-badge.bronze {
    background: var(--bronze);
    border-color: var(--bronze);
    color: #000000;
    box-shadow: 0 0 15px var(--bronze);
}

.player-info {
    flex: 1;
}

.player-name {
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 3px;
}

.player-stats {
    font-size: 12px;
    color: var(--silver);
}

.sidebar-btn {
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 255, 255, 0.2));
    border: 2px solid var(--neon-blue);
    padding: 15px;
    margin-bottom: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--neon-blue);
    cursor: pointer;
    clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sidebar-btn:hover {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    color: #000000;
    box-shadow: 0 0 20px var(--neon-blue);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 20px;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.server-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 15px;
    border-left: 3px solid var(--neon-green);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.server-item:hover {
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.server-dot {
    min-width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.server-dot.online {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.server-dot.maintenance {
    background: #ff9500;
    box-shadow: 0 0 10px #ff9500;
}

.server-info {
    flex: 1;
}

.server-name {
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 3px;
}

.server-ping {
    font-size: 12px;
    color: var(--silver);
}

.carousel {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-item.active {
    opacity: 1;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 217, 255, 0.3);
    position: relative;
}

.screenshot-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--neon-blue);
    letter-spacing: 3px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 217, 255, 0.3);
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--neon-blue);
    color: #000000;
    box-shadow: 0 0 20px var(--neon-blue);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0, 217, 255, 0.3);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 25px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--silver);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active::after,
.tab-btn:hover::after {
    transform: scaleX(1);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.tab-pane {
    display: none;
}

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

.news-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 20px;
    margin-bottom: 15px;
    border-left: 3px solid var(--neon-blue);
    transition: all 0.3s ease;
}

.news-item:hover {
    background: rgba(0, 217, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
    transform: translateX(5px);
}

.news-date {
    color: var(--neon-cyan);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.news-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.news-text {
    color: var(--silver);
    font-size: 14px;
    line-height: 1.6;
}

.discord-widget {
    margin-bottom: 20px;
}

.discord-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.discord-stat {
    background: rgba(26, 26, 26, 0.8);
    padding: 20px;
    text-align: center;
    border: 2px solid var(--neon-blue);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--silver);
    letter-spacing: 2px;
}

.login-panel {
    margin-bottom: 20px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(0, 217, 255, 0.3);
    padding: 12px 15px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.form-input::placeholder {
    color: var(--silver);
}

.login-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border: none;
    padding: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.login-btn:hover {
    box-shadow: 0 0 20px var(--neon-blue);
    transform: translateY(-2px);
}

.form-links {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.form-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.form-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-link {
    color: var(--silver);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    transform: translateX(5px);
}

.promo-banner {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    transition: all 0.3s ease;
}

.gold-banner {
    border-color: var(--gold);
}

.gold-banner:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.battle-pass-banner {
    border-color: var(--neon-cyan);
}

.battle-pass-banner:hover {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.promo-icon {
    font-size: 36px;
}

.promo-text {
    flex: 1;
}

.promo-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.promo-desc {
    font-size: 12px;
    color: var(--silver);
}

.promo-btn {
    background: transparent;
    border: 2px solid var(--neon-blue);
    padding: 8px 16px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--neon-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.promo-btn:hover {
    background: var(--neon-blue);
    color: #000000;
    box-shadow: 0 0 15px var(--neon-blue);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid;
    padding: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
}

.discord-btn {
    border-color: #5865f2;
    color: #5865f2;
}

.discord-btn:hover {
    background: #5865f2;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

.twitter-btn {
    border-color: #1da1f2;
    color: #1da1f2;
}

.twitter-btn:hover {
    background: #1da1f2;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.5);
}

.youtube-btn {
    border-color: #ff0000;
    color: #ff0000;
}

.youtube-btn:hover {
    background: #ff0000;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.twitch-btn {
    border-color: #9146ff;
    color: #9146ff;
}

.twitch-btn:hover {
    background: #9146ff;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(145, 70, 255, 0.5);
}

.main-footer {
    background: rgba(26, 26, 26, 0.95);
    border-top: 2px solid var(--neon-blue);
    padding: 30px 20px;
    margin-top: 50px;
    text-align: center;
}

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

.footer-text {
    color: var(--silver);
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-link {
    color: var(--neon-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 1fr;
    }
    
    .left-sidebar,
    .right-sidebar {
        max-width: 100%;
    }
}
