:root {
    --bg-primary: #111510;
    --bg-secondary: #181d16;
    --bg-tertiary: #1f261e;
    --bg-glass: rgba(24, 29, 22, 0.75);
    --border-glass: rgba(197, 160, 89, 0.2);
    --gold-primary: #c5a059;
    --gold-hover: #e0bc7b;
    --gold-muted: #8b7345;
    --gold-light: rgba(197, 160, 89, 0.08);
    --text-main: #e8ece7;
    --text-heading: #ffffff;
    --text-muted: #7d8c79;
    --tactical-green: #344031;
    --tactical-green-light: #485944;
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(197, 160, 89, 0.05);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: 'Noto Sans TC', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif TC', serif;
    color: var(--text-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
}

p {
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--tactical-green);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Reuseable Components */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.dark-bg {
    background-color: var(--bg-secondary);
}

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

.text-light {
    color: var(--text-heading);
}

.text-muted {
    color: var(--text-muted);
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.rounded-shadow {
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-glass);
}

.img-responsive {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--gold-primary);
    margin-top: 15px;
}

.title-underline.center {
    margin: 15px auto 0 auto;
}

/* Cards & Glassmorphism */
.card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.card-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--gold-primary);
    color: var(--bg-primary);
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid var(--gold-primary);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold-primary);
    box-shadow: 0 4px 25px rgba(197, 160, 89, 0.4);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* Sticky Navigation */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(17, 21, 16, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

#main-nav.scrolled .nav-container {
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Noto Serif TC', serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--text-heading);
}

.logo-icon {
    color: var(--gold-primary);
    font-size: 1.5rem;
    animation: rotateSlow 20s infinite linear;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold-primary);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-main);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    overflow: hidden;
}

/* Grid lines background for military tactical feel */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(197, 160, 89, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotate(15deg);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 21, 16, 0.4) 0%, rgba(17, 21, 16, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 0.4em;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.2s;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-heading);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.4s;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.6s;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.8s;
}

.badge {
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--gold-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-content .btn-primary {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 1s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.scroll-indicator p {
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.scroll-indicator i {
    font-size: 1.2rem;
    color: var(--gold-primary);
}

/* About Section CSS */
.about-text p {
    margin-bottom: 20px;
    color: var(--text-main);
}

.lead-text {
    font-size: 1.15rem;
    color: var(--gold-primary) !important;
    font-weight: 500;
}

.quote-card {
    border-left: 4px solid var(--gold-primary);
    background-color: var(--bg-secondary);
    padding: 25px;
    border-radius: 0 8px 8px 0;
    margin-top: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--gold-muted);
    margin-bottom: 10px;
    display: block;
}

.quote-card p {
    font-style: italic;
    color: var(--text-main);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.quote-card cite {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    text-align: right;
    font-weight: bold;
}

.media-container {
    position: relative;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    overflow: hidden;
}

.media-caption {
    background: var(--bg-secondary);
    padding: 15px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Interactive Explorer Section */
.explorer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .explorer-container {
        grid-template-columns: 1fr;
    }
}

.tactical-map {
    aspect-ratio: 16 / 10;
    background-color: #0e120d;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8), var(--shadow-premium);
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(197, 160, 89, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.04) 1px, transparent 1px);
    background-size: 5% 8.33%;
    pointer-events: none;
}

.compass-rose {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gold-muted);
    font-size: 0.8rem;
    z-index: 10;
}

.compass-rose i {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 5px;
    animation: spinCompass 60s linear infinite;
}

.map-elements {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Runway Representation in Map */
.map-runway {
    position: absolute;
    width: 70%;
    height: 18px;
    background: repeating-linear-gradient(
        90deg,
        rgba(197, 160, 89, 0.15),
        rgba(197, 160, 89, 0.15) 15px,
        transparent 15px,
        transparent 30px
    ), rgba(197, 160, 89, 0.05);
    border: 1px dashed rgba(197, 160, 89, 0.4);
    top: 50%;
    left: 15%;
    transform: translateY(-50%) rotate(-12deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.03);
}

.runway-text {
    font-size: 0.65rem;
    font-family: 'Noto Sans TC', sans-serif;
    color: var(--gold-muted);
    letter-spacing: 0.2em;
    transform: scale(0.9);
}

/* Taxiway curves in Map */
.map-taxiway {
    position: absolute;
    width: 25%;
    height: 80px;
    border-left: 2px dashed rgba(197, 160, 89, 0.2);
    border-bottom: 2px dashed rgba(197, 160, 89, 0.2);
    border-radius: 0 0 0 100px;
    top: 25%;
    left: 25%;
    transform: rotate(20deg);
}

.map-taxiway.branch-1 {
    width: 30%;
    height: 120px;
    border-right: 2px dashed rgba(197, 160, 89, 0.2);
    border-bottom: 2px dashed rgba(197, 160, 89, 0.2);
    border-radius: 0 0 100px 0;
    top: 48%;
    left: 45%;
    transform: rotate(-10deg);
}

/* Map Hotspots */
.hotspot {
    position: absolute;
    width: 38px;
    height: 38px;
    background-color: var(--bg-secondary);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
    outline: none;
    transition: var(--transition-smooth);
}

.hotspot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    animation: pulsePing 2s infinite ease-out;
    opacity: 0.7;
}

.hotspot:hover, .hotspot.active {
    background-color: var(--gold-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 25px var(--gold-primary);
    transform: scale(1.1);
}

.hotspot .tooltip {
    position: absolute;
    bottom: 48px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    color: var(--text-heading);
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
    pointer-events: none;
}

.hotspot:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Detail Info Panel style */
.info-panel {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
    transition: var(--transition-smooth);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 15px;
}

.info-header i {
    font-size: 2.2rem;
    color: var(--gold-primary);
}

.info-header h3 {
    font-size: 1.6rem;
}

.info-panel-badge {
    display: inline-block;
    background-color: var(--tactical-green);
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.info-body p {
    color: var(--text-main);
    margin-bottom: 20px;
}

.info-details-list {
    list-style: none;
}

.info-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.info-details-list li i {
    color: var(--gold-primary);
    margin-top: 5px;
}

.info-details-list li strong {
    color: var(--text-heading);
    min-width: 80px;
}

.info-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
}

.info-loading i {
    font-size: 2.5rem;
    color: var(--gold-primary);
}

/* Relics Section */
.relics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.relic-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.relic-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(197, 160, 89, 0.1);
}

.relic-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.relic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.relic-card:hover .relic-img {
    transform: scale(1.08);
}

.relic-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(17, 21, 16, 0.85);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.placeholder-pattern {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.05);
}

.placeholder-pattern.bg-dark {
    background: radial-gradient(circle, #101410 0%, #060806 100%);
}

.placeholder-pattern.bg-slate {
    background: radial-gradient(circle, #1d252f 0%, #10151d 100%);
}

.relic-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.relic-info h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.relic-location {
    font-size: 0.85rem;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

.relic-desc {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 20px;
    flex-grow: 1;
}

.relic-meta {
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    padding-top: 15px;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--text-muted);
}

.relic-meta strong {
    color: var(--text-main);
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold-primary) 10%, var(--gold-primary) 90%, transparent);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 40px;
}

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

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

@media (max-width: 768px) {
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 70px;
        padding-right: 20px;
    }
}

.timeline-dot {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    top: 25px;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}

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

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

@media (max-width: 768px) {
    .timeline-dot {
        left: 10px !important;
    }
}

.timeline-date {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.timeline-content {
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 0.95rem;
}

.timeline-item:hover .timeline-content {
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

/* Form / Collaboration Section */
.contribute-info p {
    margin-bottom: 20px;
}

.contact-icons {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.icon-text-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-gold {
    width: 50px;
    height: 50px;
    background-color: var(--gold-light);
    border: 1px solid var(--border-glass);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.icon-text-item h4 {
    font-size: 1rem;
    color: var(--text-heading);
    margin-bottom: 4px;
}

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

.form-container {
    padding: 40px;
}

.form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background-color: rgba(17, 21, 16, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background-color: rgba(17, 21, 16, 0.8);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.15);
}

.form-group select option {
    background-color: var(--bg-secondary);
    color: var(--text-main);
}

.form-success-msg {
    margin-top: 20px;
    background-color: rgba(56, 69, 52, 0.3);
    border: 1px solid var(--tactical-green-light);
    color: var(--text-heading);
    padding: 15px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    animation: fadeIn 0.4s ease forwards;
}

.hide {
    display: none !important;
}

/* Footer styling */
footer {
    background-color: #0c0e0b;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    padding: 60px 0;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-logo i {
    font-size: 2.2rem;
    color: var(--gold-primary);
    animation: rotateSlow 20s infinite linear;
}

.footer-logo h3 {
    font-size: 1.4rem;
}

.footer-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.footer-socials a:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-credits {
    font-size: 0.8rem;
    color: #4a5448;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 30px;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes pulsePing {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, -8px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes spinCompass {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateSlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.2em;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-padding {
        padding: 60px 0;
    }
    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
        border-bottom: 1px solid var(--border-glass);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-smooth);
        pointer-events: none;
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}
