/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --secondary-color: #1f2937;
    --accent-color: #f59e0b;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --gradient-primary: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    --gradient-secondary: linear-gradient(135deg, #1f2937 0%, #0f172a 100%);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
    --vh: 1vh;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-family: 'Orbitron', monospace;
}

h2 {
    font-size: 2.5rem;
    font-family: 'Orbitron', monospace;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-light);
}

.vision-description {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.about-description {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow-x: hidden;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.nav-logo-icon {
    width: 96px;
    height: 96px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.nav-logo p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.tm {
    font-size: 0.6em;
    vertical-align: super;
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-social {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.bluesky-icon {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.4rem;
}

.nav-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.proposal-link {
    background: var(--gradient-primary) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px !important;
    color: white !important;
    font-weight: 600 !important;
}

.proposal-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}



/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

.hero-title .line-1 {
    display: block;
    font-size: 5rem;
}

.hero-title .line-2 {
    display: block;
    font-size: 3rem;
    color: var(--text-light);
    -webkit-text-fill-color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-mission {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.detail-item {
    text-align: center;
}

.detail-item h3 {
    font-size: 0.875rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.cta-button.secondary:hover {
    background: var(--secondary-color);
    border-color: var(--primary-color);
}

.hero-proposal {
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.proposal-preview {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(31, 41, 55, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.proposal-preview:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.proposal-cover {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.proposal-info {
    flex: 1;
}

.proposal-info h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.proposal-info p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.proposal-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.proposal-download:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.proposal-download span {
    transition: transform 0.3s ease;
}

.proposal-download:hover span {
    transform: translateX(3px);
}

.hero-countdown {
    margin-top: 4rem;
    text-align: center;
    z-index: 2;
}

.countdown-container h3 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.countdown-timer {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.countdown-item {
    background: rgba(31, 41, 55, 0.8);
    border-radius: 8px;
    padding: 1rem;
    min-width: 60px;
    text-align: center;
}

.countdown-item .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.countdown-item .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.countdown-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.concept-art {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
    max-width: 100%;
    height: auto;
}

.image-caption {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(31, 41, 55, 0.5);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.image-caption p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Concept Section */
.concept {
    padding: 8rem 0;
    background: var(--secondary-color);
}

.concept h2 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.concept-card {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.concept-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.concept-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Attractions Section */
.attractions {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.attractions h2 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.attraction-card {
    background: var(--secondary-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-header h3 {
    color: var(--text-light);
    margin-bottom: 0;
}

.thrill-level {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.thrill-level {
    background: var(--primary-color);
    color: white;
}

/* Visual Showcase Section */
.visual-showcase {
    padding: 8rem 0;
    background: var(--bg-darker);
}

.visual-showcase h2 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.showcase-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px;
}

.gallery-item.large {
    grid-row: 1 / -1;
    min-height: 520px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Timeline Section */
.timeline {
    padding: 8rem 0;
    background: var(--secondary-color);
}

.timeline h2 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.timeline-visual {
    margin-bottom: 60px;
    text-align: center;
}

.timeline-hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.timeline-hero-image:hover {
    transform: scale(1.02);
}

.timeline-caption {
    margin-top: 20px;
}

.timeline-caption p {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 2rem 0;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -11px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -11px;
}

.timeline-dot.highlighted {
    background: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-color);
}

.timeline-content {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Impact Section */
.impact {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.impact h2 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.impact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(31, 41, 55, 0.5);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.impact-item h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--secondary-color);
}

.contact h2 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info h3 {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-item strong {
    color: var(--text-light);
}

.contact-form {
    background: rgba(15, 23, 42, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-dark);
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Thank You Message */
.thank-you-message {
    text-align: center;
    padding: 2rem;
}

.thank-you-message h3 {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
}

.thank-you-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.thank-you-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.thank-you-content p:last-child {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 4px;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-icon {
    margin-right: 0.75rem;
    font-size: 1.2rem;
    width: 24px;
    display: inline-block;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-details {
        gap: 2rem;
    }
    
    .attractions-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Show mobile menu toggle */
    .navbar .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop menu completely on mobile */
    .navbar .nav-menu {
        display: none !important;
    }

    /* Show nav social on mobile */
    .nav-social {
        margin-left: 0;
        margin-right: 1rem;
    }

    .nav-social-link {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    /* Create separate mobile menu */
    .mobile-nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #020617;
        z-index: 9999;
        transition: right 0.3s ease;
        padding: 100px 0 20px 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .mobile-nav-menu.active {
        right: 0;
    }

    .mobile-nav-item {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-link {
        display: block;
        padding: 16px 24px;
        color: #f8fafc;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid #334155;
        transition: all 0.3s ease;
    }

    .mobile-nav-link:hover {
        background: rgba(220, 38, 38, 0.1);
        color: #dc2626;
        padding-left: 32px;
    }

    .mobile-nav-link.active {
        color: #dc2626;
        background: rgba(220, 38, 38, 0.1);
    }

    .mobile-nav-link.proposal-link {
        background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
        color: white;
        margin: 16px 24px;
        border-radius: 8px;
        text-align: center;
        border: none;
        width: calc(100% - 48px);
    }

    .mobile-nav-link.proposal-link:hover {
        background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
        padding-left: 24px;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero Section Mobile */
    .hero {
        padding-top: 80px; /* Ensure navbar clearance on mobile */
        min-height: calc(var(--vh, 1vh) * 100 - 80px); /* Adjust for navbar */
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-title .line-1 {
        font-size: 2.5rem;
    }

    .hero-title .line-2 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-mission {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Countdown Mobile */
    .hero-countdown {
        margin-top: 2rem;
        padding: 1.5rem 0;
        width: 100%;
        order: 4; /* Ensure it comes after CTA buttons */
    }
    
    /* Hero Proposal Mobile */
    .hero-proposal {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .proposal-preview {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .proposal-cover {
        width: 100px;
        height: 130px;
    }
    
    /* Showcase Mobile */
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .showcase-item {
        padding: 1.25rem;
    }
    
    .showcase-image {
        height: 180px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Content Sections Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .about-stats .stat {
        min-width: 120px;
    }
    
    /* Images Mobile */
    .about-image,
    .concept-art {
        transform: none !important;
        position: static !important;
    }
    
    .about-content {
        align-items: stretch;
    }

    /* Showcase Gallery Mobile */
    .showcase-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .gallery-item.large {
        grid-row: auto;
        min-height: 300px;
    }

    .gallery-item {
        min-height: 250px;
    }

    .timeline-hero-image {
        max-width: 100%;
    }

    /* Timeline Mobile */
    .timeline-container::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 3rem;
        text-align: left;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
        padding-right: 0;
        padding-left: 3rem;
    }

    .timeline-item:nth-child(even) {
        left: 0;
        padding-left: 3rem;
    }

    .timeline-dot {
        left: 9px !important;
    }

    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Grid Layouts Mobile */
    .concept-grid,
    .attractions-grid,
    .impact-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Cards Mobile */
    .concept-card,
    .attraction-card,
    .impact-item,
    .value-card {
        padding: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        justify-content: center;
        padding: 0.75rem;
    }
    
    /* Content Pages Mobile */
    .content-grid {
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .mission-grid, 
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-item, 
    .innovation-item {
        padding: 1.25rem;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    /* Press Mobile */
    .press-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Devices */
    .container {
        padding: 0 15px;
    }

    /* Typography Extra Small */
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title .line-1 {
        font-size: 2.2rem;
    }

    .hero-title .line-2 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.8rem;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }

    /* Buttons Extra Small */
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 260px;
    }
    


    /* Cards Extra Small */
    .concept-card,
    .attraction-card,
    .impact-item,
    .value-card,
    .press-item {
        padding: 1.25rem;
    }
    
    .mission-item,
    .innovation-item {
        padding: 1rem;
    }

    /* Stats Extra Small */
    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .about-stats .stat {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
    
    /* Countdown Extra Small */
    .hero-countdown {
        margin-top: 1.5rem;
        padding: 1rem 0;
        width: 100%;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 0.75rem;
    }
    
    /* Forms Extra Small */
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Sidebar Extra Small */
    .content-sidebar {
        padding: 1.5rem;
    }
    
    .sidebar-section h3 {
        font-size: 1.1rem;
    }
    
    /* Timeline Extra Small */
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Scroll animations */
[data-aos="slide-up"] {
    transform: translateY(50px);
    opacity: 0;
}

[data-aos="slide-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Fallback for AOS - ensure content is visible if AOS doesn't load */
[data-aos] {
    opacity: 1;
    transform: none !important;
    transition: opacity 0.3s ease;
}

/* AOS specific overrides when library is loaded */
.aos-init[data-aos] {
    opacity: 0;
    transform: translateY(50px);
}

.aos-init[data-aos^="fade"] {
    opacity: 0;
    transform: translateY(20px);
}

.aos-init[data-aos^="flip"] {
    opacity: 0;
    transform: scale(0.8);
}

.aos-animate {
    opacity: 1 !important;
    transform: none !important;
}

/* Page Styles for Additional Pages */
.page-content {
    padding-top: 80px;
}

.page-hero {
    background: var(--secondary-color);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.content-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}

.content-main article {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.content-main article:last-child {
    border-bottom: none;
}

.content-main h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.mission-grid, .innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-item, .innovation-item {
    background: rgba(31, 41, 55, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.mission-item h4, .innovation-item h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.architecture-showcase {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.showcase-item {
    text-align: center;
    background: rgba(31, 41, 55, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.showcase-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.showcase-item h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.showcase-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.content-sidebar {
    background: rgba(31, 41, 55, 0.5);
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sidebar-section h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.fact-item {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 6px;
}

.fact-item strong {
    color: var(--primary-color);
}

.partner-list, .recognition-list {
    list-style: none;
    padding-left: 0;
}

.partner-list li, .recognition-list li {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 4px;
    font-size: 0.875rem;
}

.sidebar-cta {
    background: rgba(220, 38, 38, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.sidebar-cta h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.values-section {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.values-section h2 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(15, 23, 42, 0.8);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

/* FAQ Styles */
.faq-item {
    background: rgba(31, 41, 55, 0.5);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-weight: 600;
}

.faq-question:hover {
    background: rgba(15, 23, 42, 0.8);
}

.faq-answer {
    padding: 0 1.5rem;
    display: none;
    border-top: 1px solid var(--border-color);
}

.faq-answer.active {
    display: block;
    padding: 1.5rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-toggle.active {
    transform: rotate(45deg);
}

/* Press Release Styles */
.press-item {
    background: rgba(31, 41, 55, 0.5);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.press-item h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.press-date {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}



/* Press Releases Page Styles */
.press-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin-top: 2rem;
}

.press-release {
    background: var(--secondary-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.press-release:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.press-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.press-date {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.press-category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.press-release h2 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.press-image {
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.press-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.press-image:hover img {
    transform: scale(1.05);
}

.press-excerpt {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.press-content {
    color: var(--text-muted);
    line-height: 1.7;
}

.press-content p {
    margin-bottom: 1rem;
}

.press-content strong {
    color: var(--text-light);
    font-weight: 600;
}

.press-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.press-content li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.press-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.press-sidebar .sidebar-section {
    background: var(--secondary-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.press-sidebar h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info:last-child {
    margin-bottom: 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.fact-list {
    list-style: none;
    padding: 0;
}

.fact-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.fact-list li:last-child {
    border-bottom: none;
}

.fact-list strong {
    color: var(--text-light);
}

.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list li {
    margin-bottom: 0.5rem;
}

.resource-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-list a:hover {
    color: var(--primary-color);
}



.timeline-mini {
    padding: 0;
}

.timeline-mini .timeline-item {
    padding: 0.75rem 0;
    border-left: 2px solid var(--border-color);
    padding-left: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.timeline-mini .timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
}

.timeline-mini .timeline-item.completed {
    border-left-color: var(--primary-color);
}

.timeline-mini .timeline-item.completed::before {
    background: var(--primary-color);
}

.timeline-mini .timeline-item.in-progress {
    border-left-color: var(--accent-color);
}

.timeline-mini .timeline-item.in-progress::before {
    background: var(--accent-color);
}

.timeline-mini strong {
    color: var(--text-light);
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-dark);
    color: var(--text-light);
    margin-bottom: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    width: 100%;
}

/* Themed Lands Section */
.themed-lands {
    padding: 8rem 0;
    background: var(--bg-darker);
}

.themed-lands h2 {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.lands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.land-card {
    background: var(--secondary-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.land-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.land-floors {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.land-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.land-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Enhanced FAQ Styles */
.faq-visual-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.faq-hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.faq-hero-image:hover {
    transform: scale(1.02);
}

.faq-visual-caption h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.faq-visual-caption p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.75rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.faq-item {
    background: var(--secondary-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--secondary-color);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(220, 38, 38, 0.1);
}

.faq-question span:first-child {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-toggle.active {
    transform: rotate(45deg);
}

.faq-answer {
    background: var(--bg-dark);
    transition: all 0.3s ease;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.faq-answer ul {
    padding: 0 1.5rem 1.5rem 3rem;
}

.faq-answer li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    
    .press-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .lands-grid {
        grid-template-columns: 1fr;
    }
    
    .press-release {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .press-release {
        padding: 1rem;
    }
    
    .press-release h2 {
        font-size: 1.25rem;
    }
    
    .land-card {
        padding: 1.5rem;
    }
}

/* Error Page Styles */
.error-page {
    padding: 8rem 0;
    background: var(--bg-dark);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.error-page .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.error-content {
    text-align: left;
}

.error-number {
    font-family: 'Orbitron', monospace;
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    margin-bottom: 1rem;
    line-height: 1;
}

.error-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.error-message {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.error-submessage {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.error-links {
    background: rgba(31, 41, 55, 0.5);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.error-links h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.error-links ul {
    list-style: none;
    padding: 0;
}

.error-links li {
    margin-bottom: 0.75rem;
}

.error-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-links a:hover {
    color: var(--primary-color);
}

.error-technical {
    background: rgba(15, 23, 42, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

.error-technical h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.error-technical p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.error-technical code {
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

.error-image {
    text-align: center;
}

.error-image .concept-art {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.error-image .image-caption {
    margin-top: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Error page mobile responsiveness */
@media (max-width: 768px) {
    .error-page .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .error-content {
        text-align: center;
        order: 2;
    }
    
    .error-image {
        order: 1;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .error-actions .cta-button {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .error-number {
        font-size: 4rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-message,
    .error-submessage {
        font-size: 1rem;
    }
    
    .error-links {
        padding: 1.5rem;
    }
} 