/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
    /* Light mode (default) */
    --primary-color: #000;
    --secondary-color: #f5f5f5;
    --accent-color: #444;
    --text-color: #333;
    --light-text: #666;
    --border-color: #e5e5e5;
    --divider-color: #e0e0e0;
    --button-color: #333;
    --button-text-color: #fff;
    --card-bg: #fff;
    --card-border: rgba(0, 0, 0, 0.12);
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --bg-color: #fff;
    --header-bg: rgba(255, 255, 255, 0.98);
    --header-bg-scrolled: rgba(255, 255, 255, 0.8);
    --footer-bg: #F5F5F5;
    --max-width: 100%;
    --section-width: 95%;
    --section-padding: 0 40px;
}

[data-theme="dark"] {
    /* Dark mode */
    --primary-color: #fff;
    --secondary-color: #1e1e1e;
    --accent-color: #8e8e8e;
    --text-color: #f0f0f0;
    --light-text: #c0c0c0;
    --border-color: #333;
    --divider-color: #2a2a2a;
    --button-color: #666;
    --button-text-color: #fff;
    --card-bg: #1a1a1a;
    --card-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    --bg-color: #121212;
    --header-bg: rgba(18, 18, 18, 0.98);
    --header-bg-scrolled: rgba(18, 18, 18, 0.8);
    --footer-bg: #1E1E1E;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button, .button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: var(--button-color);
    color: var(--button-text-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
}

button:hover, .button:hover {
    background-color: #555;
}

.discord-button {
    display: flex;
    align-items: center;
}

.discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--button-color);
    color: var(--button-text-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
    padding: 0;
}

.discord-btn:hover {
    background-color: #555;
}

.text-button {
    color: var(--text-color);
    padding: 10px 20px;
    font-weight: 600;
    display: inline-block;
    font-size: 14px;
    border: 1px solid var(--button-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.text-button:hover {
    background-color: rgba(128, 128, 128, 0.1);
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
}

.language-selector select {
    background-color: var(--button-color);
    color: var(--button-text-color);
    border: none;
    padding: 10px 12px;
    padding-right: 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    line-height: 1.5;
    min-width: 60px;
}

.language-selector select:hover {
    background-color: #555;
}

.mobile-language-selector {
    margin-bottom: 10px;
}

.mobile-language-selector select {
    width: 100%;
    background-color: var(--button-color);
    color: var(--button-text-color);
    border: none;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px;
}

.mobile-language-selector select:hover {
    background-color: #555;
}

/* Theme Toggler */
.theme-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.theme-toggle i {
    font-size: 18px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.theme-toggle i:hover {
    color: var(--accent-color);
}

/* Header and Navigation */
header {
    padding: 12px 0;
    position: sticky;
    top: 0;
    background-color: var(--header-bg);
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
}

header.scrolled {
    backdrop-filter: blur(8px);
    background-color: var(--header-bg-scrolled);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-padding);
}

.logo a {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
}

.logo svg {
    margin-right: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-color);
    padding: 5px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--header-bg);
    border-top: 1px solid var(--border-color);
    padding: 20px;
    gap: 15px;
    z-index: 99;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--accent-color);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.mobile-theme-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
}

.mobile-theme-toggle:hover {
    color: var(--accent-color);
}

.mobile-theme-toggle i {
    font-size: 18px;
}

.mobile-discord-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
    text-decoration: none;
}

.mobile-discord-link:hover {
    color: var(--accent-color);
}

.mobile-discord-link i {
    font-size: 18px;
}

.nav-links a {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    display: flex;
    padding: 80px 40px;
    max-width: var(--section-width);
    margin: 0 auto;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 3;
    max-width: 700px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 16px;
    max-width: 90%;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 10px;
}

.hero-image {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.hero-image img {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.image-placeholder {
    width: 100%;
    background-color: var(--secondary-color);
    border-radius: 8px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Section Divider */
.section-divider {
    height: 1px;
    background-color: var(--divider-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    width: 100%;
}

/* Protection Section */
.protection {
    background-color: var(--secondary-color);
    padding: 80px 0;
    width: 100%;
}

.section-inner {
    max-width: var(--section-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--light-text);
    font-size: 18px;
    font-weight: 600;
}

.protection-types {
    display: flex;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.protection-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--light-text);
    font-weight: 600;
}

.icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
}

.icon i {
    color: var(--button-color);
}

.protection-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.protection-card p {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
}

.human-note {
    background-color: rgba(100, 150, 255, 0.1);
    border-left: 3px solid rgba(100, 150, 255, 0.5);
    padding: 12px 15px;
    margin: 15px 0 20px 0;
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.human-note strong {
    color: var(--button-color);
}

.feature-list li {
    padding: 4px 0;
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    font-weight: 600;
}

.feature-list li::before {
    display: none;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--button-color);
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
    width: 100%;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
}

.use-case-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--card-border);
    cursor: pointer;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.use-case-icon {
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.use-case-icon i {
    font-size: 48px;
    color: var(--button-color);
}

.use-case-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.use-case-card p {
    color: var(--light-text);
    font-size: 15px;
    font-weight: 600;
}

/* Dashboard Section */
.dashboard {
    background-color: var(--secondary-color);
    padding: 80px 0;
    width: 100%;
}

.dashboard-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dashboard-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.dashboard-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.dashboard-item img:hover {
    opacity: 0.9;
}

.dashboard-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Coverage Section */
.coverage {
    background-color: var(--secondary-color);
    padding: 80px 0;
    width: 100%;
}

.coverage-map {
    width: 100%;
}

.map-container {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.map-container h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.map-world {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    height: 400px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.map-world img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 100%;
    opacity: 0.3;
    object-fit: contain;
}

.locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
}

.location {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg);
    padding: 14px 10px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    white-space: nowrap;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.location-dot {
    width: 10px;
    height: 10px;
    background-color: var(--button-color);
    border-radius: 50%;
    margin-right: 10px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    width: 100%;
}

.contact-container {
    display: flex;
    gap: 60px;
    width: 100%;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-text p {
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 600;
}

.benefit-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    font-weight: 600;
}

.benefit-list li::before {
    display: none;
}

.benefit-list li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--button-color);
}

.contact-form {
    flex: 1;
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-form p {
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 15px;
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--card-bg);
    color: var(--text-color);
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    background-color: var(--button-color);
    color: var(--button-text-color);
}

.submit-button:hover {
    background-color: #555;
}

/* Network Section */
.network-section {
    padding: 80px 0;
    width: 100%;
}

.network-container {
    display: flex;
    gap: 60px;
    width: 100%;
}

.network-text {
    flex: 1;
}

.network-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
}

.network-text p {
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 600;
}

.network-metrics {
    margin-top: 30px;
}

.network-metrics li {
    padding: 6px 0;
    position: relative;
    padding-left: 35px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.network-metrics li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--button-color);
    font-size: 20px;
}

.network-metrics li span {
    margin-left: 10px;
}

.network-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--button-color);
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--light-text);
}

/* Footer */
footer {
    padding: 50px 0 20px 0;
    border-top: 1px solid var(--border-color);
    width: 100%;
    background-color: var(--footer-bg);
}

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-padding);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-description {
    font-size: 14px;
    color: var(--light-text);
    opacity: 0.8;
    font-weight: 400;
    line-height: 1.6;
    max-width: 300px;
}

.footer-column-heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    color: var(--light-text);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--text-color);
}

.footer-divider {
    height: 1px;
    background-color: var(--border-color);
    width: 100%;
    margin: 30px 0 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--light-text);
    opacity: 0.7;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social-icon {
    color: var(--light-text);
    opacity: 0.7;
    font-size: 18px;
    transition: opacity 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    opacity: 1;
    color: var(--text-color);
}

/* Translation Notice Banner */
.translation-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: var(--card-shadow);
    z-index: 1000;
    max-width: 400px;
    animation: slideInUp 0.3s ease-out;
}

.translation-notice-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.5;
}

.translation-notice-content i.fa-info-circle {
    color: #4A90E2;
    font-size: 16px;
    flex-shrink: 0;
}

.translation-notice-content span {
    flex: 1;
}

.translation-notice-close {
    background: none;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.translation-notice-close:hover {
    color: var(--text-color);
}

.translation-notice-close i {
    font-size: 14px;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animations */
.protection-card, .use-case-card, .location {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.protection-card.animate, .use-case-card.animate, .location.animate {
    opacity: 1;
    transform: translateY(0);
}

.nav-links a.active {
    color: var(--accent-color);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .use-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero, .protection-types, .contact-container, .network-container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .locations {
        grid-template-columns: repeat(2, 1fr);
    }

    .network-stats {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    header {
        position: sticky;
    }
    
    nav {
        position: relative;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-image {
        display: none;
    }
    
    .use-case-grid {
        grid-template-columns: 1fr;
    }
    
    .locations {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .network-text h2 {
        font-size: 32px;
    }

    .network-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-column-heading {
        margin-top: 20px;
        margin-bottom: 12px;
    }
    
    .footer-column-heading:first-of-type {
        margin-top: 0;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .cta-button {
        display: none;
    }
    
    .theme-toggle {
        display: none;
    }
    
    .discord-button {
        display: none;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: var(--card-bg);
    color: var(--text-color);
    margin: 10% auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.close-modal {
    font-size: 28px;
    font-weight: 600;
    cursor: pointer;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-body {
    padding: 20px;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.5;
    color: var(--light-text);
}

.modal-body h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.modal-body ul li {
    margin-bottom: 8px;
    color: var(--light-text);
    line-height: 1.6;
}

.game-filters {
    margin: 20px 0;
}

.game-filter-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 12px;
    background-color: var(--secondary-color);
    border-radius: 6px;
    border: 1px solid var(--card-border);
}

.game-filter-item i {
    font-size: 24px;
    margin-right: 15px;
    color: var(--button-color);
    width: 30px;
    text-align: center;
}

.game-filter-item span {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

/* Contact Form Modal Styles */
.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info {
    margin-bottom: 10px;
}

.contact-email-container {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-email {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
}

.contact-email i {
    font-size: 18px;
    margin-right: 12px;
    color: var(--button-color);
}

.contact-email a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-email a:hover {
    text-decoration: underline;
}

.modal-contact-form {
    margin-top: 10px;
}

.modal-contact-form .form-group {
    margin-bottom: 15px;
}

.modal-contact-form input,
.modal-contact-form textarea {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 10px 12px;
}

.modal-contact-form .submit-button {
    background-color: var(--button-color);
    color: var(--button-text-color);
    padding: 12px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-contact-form .submit-button:hover {
    background-color: #555;
}

/* Image Lightbox Modal */
.image-modal-content {
    max-width: 90%;
    width: auto;
    margin: 5% auto;
}

.image-modal-body {
    padding: 0;
    text-align: center;
    background-color: var(--bg-color);
}

.image-modal-body img {
    max-width: 100%;
    max-height: 85vh;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Success Modal */
.success-modal-content {
    max-width: 450px;
}

.success-modal-body {
    text-align: center;
    padding: 30px 20px;
}

.success-modal-body p {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20% auto;
    }
} 