:root {
    /* Brand Colors */
    --brand-orange: #FF5F1F;
    --brand-dark: #0A0A0A;
    --brand-light: #FFFFFF;
    
    /* Social Colors */
    --youtube: #FF0000;
    --twitch: #9146FF;
    --instagram: #E4405F;
    --twitter: #26A7dE;
    --discord: #FF5F1F;
    --patreon: #FF424D;
    --streamlabs: #80F5FF;
    
    /* Theme Colors */
    --bg-primary: var(--brand-dark);
    --bg-secondary: #151515;
    --text-primary: var(--brand-light);
    --text-secondary: rgba(255, 255, 255, 0.7);
    
    /* Effects */
    --glow: 0 0 20px rgba(255, 95, 31, 0.3);
    --hover-transform: scale(1.05) translateY(-2px);
}

/* Light Theme Variables */
[data-theme="light"] {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --text-primary: var(--brand-dark);
    --text-secondary: rgba(0, 0, 0, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.theme-toggle input {
    display: none;
}

.theme-toggle label {
    cursor: pointer;
    padding: 10px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.theme-toggle label:hover {
    transform: var(--hover-transform);
}

.theme-toggle .fa-sun { display: none; }
.theme-toggle .fa-moon { display: block; }
[data-theme="light"] .theme-toggle .fa-sun { display: block; }
[data-theme="light"] .theme-toggle .fa-moon { display: none; }

/* Page Layout */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    position: relative;
}

.logo-container {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: visible;
    background: var(--bg-secondary);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.logo-container:hover .main-logo {
    transform: scale(1.05);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        var(--brand-orange) 0%,
        rgba(255, 95, 31, 0.6) 50%,
        var(--brand-orange) 100%
    );
    filter: blur(50px);
    opacity: 0.6;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
    border-radius: 50%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: bounce 1.6s infinite;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.scroll-indicator i {
    font-size: 1.1rem;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(2px);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 28px;
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.4;
    }
}

/* Social Links */
.social-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--bg-secondary);
}

.social-link:hover {
    transform: var(--hover-transform);
}

.social-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-link span {
    font-weight: 500;
}

.social-link.youtube:hover { color: var(--youtube); }
.social-link.twitch:hover { color: var(--twitch); }
.social-link.instagram:hover { color: var(--instagram); }
.social-link.twitter:hover { color: var(--twitter); }
.social-link.patreon:hover { color: var(--patreon); }
.social-link.streamlabs:hover { color: var(--streamlabs); }

/* Projects Preview Section */
.projects-preview-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.projects-preview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.projects-preview-text {
    text-align: center;
    max-width: 600px;
}

.projects-preview-card {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.projects-preview-card:hover {
    transform: var(--hover-transform);
    box-shadow: var(--glow);
}

.preview-card-image {
    position: relative;
    flex-shrink: 0;
}

.preview-image {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    object-fit: cover;
}

.preview-badges {
    position: absolute;
    top: -8px;
    right: -8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.preview-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
}

.preview-badge.python {
    background: #3776ab;
}

.preview-badge.java {
    background: #f89820;
}

.preview-card-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.preview-card-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.preview-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.preview-feature {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.projects-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--brand-orange);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.projects-button:hover {
    transform: var(--hover-transform);
    box-shadow: var(--glow);
}

/* Community Section */
.community-section {
    padding: 4rem 0;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 24px;
}

.discord-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--discord);
}

.discord-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--discord);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.discord-button:hover {
    transform: var(--hover-transform);
    box-shadow: var(--glow);
}

.discord-embed {
    position: relative;
}

.discord-embed iframe {
    width: 100%;
    height: 500px;
    border-radius: 16px;
}

/* Custom Discord embed header overlay */
.discord-embed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--discord);
    border-radius: 16px 16px 0 0;
    z-index: 10;
    pointer-events: none;
}

.discord-embed::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 11;
    pointer-events: none;
}

.discord-embed {
    position: relative;
}

.discord-embed .discord-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--discord);
    border-radius: 16px 16px 0 0;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.discord-embed .discord-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.discord-embed .discord-logo i {
    font-size: 24px;
}

.discord-embed .join-link {
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

.discord-embed .join-link:hover {
    opacity: 0.8;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    background: var(--bg-secondary);
    padding: 1rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 100;
}

.cookie-notice.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-notice p {
    color: var(--text-secondary);
}

.cookie-notice button {
    background: var(--brand-orange);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-notice button:hover {
    transform: var(--hover-transform);
}

/* Projects Section */
.projects-section {
    padding: 4rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: var(--hover-transform);
    box-shadow: var(--glow);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: var(--brand-orange);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--brand-orange);
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Footer Styles */
.site-footer {
    background: var(--bg-secondary);
    padding: 4rem 0 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: var(--bg-primary);
    text-decoration: none;
}

.footer-social:hover {
    transform: translateY(-3px);
}

.footer-social.youtube:hover { color: var(--youtube); }
.footer-social.twitch:hover { color: var(--twitch); }
.footer-social.instagram:hover { color: var(--instagram); }
.footer-social.twitter:hover { color: var(--twitter); }
.footer-social.patreon:hover { color: var(--patreon); }
.footer-social.streamlabs:hover { color: var(--streamlabs); }

.footer-nav-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--brand-orange);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 4rem;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-container {
        padding: 1rem;
    }

    .hero-section {
        gap: 3rem;
    }

    .logo-container {
        width: 180px;
        height: 180px;
    }

    .social-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .section-content {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .discord-info h2 {
        font-size: 2rem;
    }

    .cookie-notice {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        bottom: 1rem;
        width: calc(100% - 2rem);
        margin: 0 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .projects-preview-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .preview-image {
        width: 100px;
        height: 100px;
    }

    .preview-features {
        justify-content: center;
    }
}

/* Login Section */
.login-section {
    height: 93vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 1rem;
    overflow: hidden;
}

.login-container {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.login-container h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--brand-orange);
}

.login-container p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.google-sign-in {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: white;
    color: #333;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.google-sign-in:hover {
    transform: var(--hover-transform);
    box-shadow: var(--glow);
}

.google-sign-in i {
    font-size: 1.4rem;
    color: #4285F4;
}

/* Mobile Responsiveness for Login */
@media (max-width: 768px) {
    .login-container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .login-container h2 {
        font-size: 1.8rem;
    }
}

/* Dashboard Section */
.dashboard-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    padding: 1rem;
}

.dashboard-card {
    background: var(--bg-secondary);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.dashboard-card:hover {
    transform: var(--hover-transform);
    box-shadow: var(--glow);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brand-orange);
    transition: all 0.3s ease;
}

.dashboard-card:hover .card-icon {
    transform: scale(1.1);
    color: var(--brand-orange);
}

.dashboard-card h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-primary);
}

.dashboard-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

/* Mobile Responsiveness for Dashboard */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .dashboard-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.logout-button {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--bg-secondary);
    border: none;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.logout-button:hover {
    transform: var(--hover-transform);
    box-shadow: var(--glow);
    color: var(--brand-orange);
}

.logout-button i {
    font-size: 1.2rem;
}

/* Minecraft EVO SMP Section */
.mcevo-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 3rem;
}

.mcevo-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.mcevo-content h1 {
    font-size: 3rem;
    color: var(--brand-orange);
    margin-bottom: 1rem;
}

.mcevo-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.server-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: var(--hover-transform);
    box-shadow: var(--glow);
}

.info-card .card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-orange);
    margin-bottom: 0.5rem;
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.copy-field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-primary);
    padding: 0.5rem;
    border-radius: 8px;
    width: 100%;
    max-width: 250px;
}

.copy-field input {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    width: 100%;
    padding: 0.5rem;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    color: var(--brand-orange);
}

.rules-section {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 3rem;
}

.rules-section h2 {
    font-size: 2rem;
    color: var(--brand-orange);
    margin-bottom: 2rem;
}

.rules-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.rules-list li {
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.rules-list li:hover {
    transform: translateX(10px);
    color: var(--text-primary);
}

.navigation-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-button:hover {
    transform: var(--hover-transform);
    box-shadow: var(--glow);
}

.nav-button.discord {
    background: var(--discord);
    color: white;
}

.nav-button.discord:hover {
    background: var(--discord);
}

/* Mobile Responsiveness for MCEVO */
@media (max-width: 768px) {
    .mcevo-content h1 {
        font-size: 2.2rem;
    }

    .server-info {
        grid-template-columns: 1fr;
    }

    .rules-section {
        padding: 2rem;
    }

    .navigation-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-button {
        width: 100%;
        justify-content: center;
    }
}

/* FiveM page: Past Cities grid (max 2 across) */
.page-container > .character-section:nth-of-type(4) .servers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

@media (max-width: 768px) {
    .page-container > .character-section:nth-of-type(4) .servers-grid {
        grid-template-columns: 1fr !important;
    }
}