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

:root {
    --army-green: #4B5320;
    --army-green-dark: #3A4019;
    --army-green-light: #6B7A2A;
    --red: #DC143C;
    --red-dark: #B22222;
    --white: #FFFFFF;
    --yellow: #FFD700;
    --yellow-dark: #DAA520;
    --cream: #FFF8DC;
    --gray-light: #F5F5F5;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: var(--army-green);
    background-color: var(--white);
    overflow-x: hidden;
    overflow-y: auto;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--white);
}

h2 {
    font-size: 2rem;
    color: var(--army-green);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--army-green-dark);
}

h4 {
    font-size: 1.25rem;
    color: var(--army-green-dark);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.lead {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--army-green-dark);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.header {
    background: 
        radial-gradient(circle at 20% 20%, rgba(75, 83, 32, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(58, 64, 25, 0.9) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(107, 122, 42, 0.7) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(75, 83, 32, 0.6) 0%, transparent 50%),
        linear-gradient(45deg, var(--army-green) 0%, var(--army-green-dark) 50%, var(--army-green-light) 100%);
    background-size: 200px 200px, 150px 150px, 180px 180px, 160px 160px, 100% 100%;
    background-position: 0 0, 50px 50px, 100px 100px, 150px 150px, 0 0;
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--red);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.logo-red-x {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--red);
    border: 3px solid var(--red);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-brand h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--white);
}

.subtitle {
    font-size: 0.9rem;
    color: var(--yellow);
    margin: 0;
    font-style: italic;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-links a:hover {
    color: var(--yellow);
    background-color: var(--army-green-light);
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(75, 83, 32, 0.9), rgba(58, 64, 25, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23FFF8DC" width="1200" height="600"/><path fill="%23FFD700" d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--red);
}

/* Latest Update Section */
.latest-update-section {
    background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
    padding: 3rem 0;
    border-bottom: 3px solid var(--red);
    position: relative;
    overflow: hidden;
}

.latest-update-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="rgba(255,255,255,0.1)" cx="20" cy="20" r="2"/><circle fill="rgba(255,255,255,0.1)" cx="80" cy="40" r="1.5"/><circle fill="rgba(255,255,255,0.1)" cx="40" cy="80" r="1"/><circle fill="rgba(255,255,255,0.1)" cx="90" cy="90" r="1.5"/><circle fill="rgba(255,255,255,0.1)" cx="10" cy="60" r="1"/></svg>');
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

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

.latest-update-banner {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--white);
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.update-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.latest-update-banner h2 {
    color: var(--army-green);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.update-description {
    color: #5d6d7e;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.update-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.update-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.3);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.update-button:hover {
    background: linear-gradient(135deg, #1ed760 0%, #1db954 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(29, 185, 84, 0.4);
    border-color: var(--white);
}

.update-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.3);
}

.spotify-icon {
    font-size: 1.3rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

.update-meta {
    display: flex;
    gap: 2rem;
    color: #7f8c8d;
    font-size: 0.95rem;
    font-weight: 600;
}

.update-duration,
.update-date {
    background: rgba(75, 83, 32, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(75, 83, 32, 0.2);
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-author {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Story Section */
.story-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.timeline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--cream);
    border-radius: 8px;
    border-left: 4px solid var(--army-green);
}

.timeline h3 {
    color: var(--army-green);
    margin-bottom: 2rem;
    text-align: center;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-date {
    flex: 0 0 200px;
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.95rem;
}

.timeline-content {
    flex: 1;
    padding-left: 2rem;
}

.timeline-content p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #5d6d7e;
}

/* Chapters */
.chapters {
    margin-top: 3rem;
}

.chapter {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.chapter h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.chapter p {
    margin-bottom: 1.5rem;
    text-align: justify;
    color: #34495e;
}

.chapter p:last-child {
    margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background-color: var(--gray-light);
}

.gallery-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--army-green-dark);
    margin-bottom: 3rem;
    font-style: italic;
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--army-green);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-image {
    width: 100%;
    height: 250px;
    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(75, 83, 32, 0.9));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h4 {
    color: var(--yellow);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

/* Podcast Section */
.podcast-section {
    background: linear-gradient(135deg, var(--army-green) 0%, var(--army-green-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.podcast-section h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.podcast-content {
    max-width: 600px;
    margin: 0 auto;
}

.podcast-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--yellow);
}

.podcast-link {
    display: inline-block;
    background-color: var(--red);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    border: 2px solid var(--yellow);
}

.podcast-link:hover {
    background-color: var(--red-dark);
    border-color: var(--white);
}

/* Submit Section */
.submit-section {
    padding: 4rem 0;
    background-color: var(--cream);
}

.submit-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--army-green);
}

.submit-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.submit-option {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid var(--army-green);
}

.submit-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.submit-option h3 {
    color: var(--army-green);
    margin-bottom: 1rem;
}

.submit-option p {
    color: var(--army-green-dark);
    margin-bottom: 1.5rem;
}

.submit-link {
    display: inline-block;
    background-color: var(--army-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: 2px solid var(--red);
}

.submit-link:hover {
    background-color: var(--army-green-dark);
    border-color: var(--yellow);
}

/* Missions Section */
.missions-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.missions-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--army-green);
    font-size: 2.5rem;
}

.missions-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--army-green-dark);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

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

.mission-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--army-green-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-card h3 {
    color: var(--army-green);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--red);
    padding-bottom: 0.5rem;
}

.mission-timeline {
    margin-bottom: 2rem;
}

.mission-timeline .timeline-item {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.mission-timeline .timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mission-timeline .timeline-date {
    flex: 0 0 120px;
    font-weight: 600;
    color: var(--red);
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.9rem;
}

.mission-timeline .timeline-content {
    flex: 1;
    padding-left: 1rem;
}

.mission-timeline .timeline-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #5d6d7e;
    line-height: 1.4;
}

.mission-details {
    background: rgba(75, 83, 32, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--army-green);
}

.mission-details h4 {
    color: var(--army-green-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-details li {
    padding: 0.5rem 0;
    color: #5d6d7e;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.mission-details li:before {
    content: "•";
    color: var(--red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.mission-reflection {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--army-green);
    margin-top: 2rem;
}

.mission-reflection h3 {
    color: var(--army-green);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--red);
    padding-bottom: 0.5rem;
}

.mission-reflection p {
    color: #5d6d7e;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.mission-reflection p:last-child {
    margin-bottom: 0;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: white;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: #5d6d7e;
}

/* Editor's Notes */
.editors-notes {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.editors-notes h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

.note-content h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

.note-content h4:first-child {
    margin-top: 0;
}

.note-content h5 {
    color: #34495e;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    font-style: italic;
}

.note-author {
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.note-content p {
    color: #34495e;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.timeline-description {
    background-color: #ecf0f1;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    border-left: 3px solid #3498db;
}

.timeline-description p {
    margin: 0;
    font-size: 1rem;
    color: #5d6d7e;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #1a252f;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin: 0;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-date {
        flex: none;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content {
        padding-left: 0;
    }
    
    .submit-options {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
        min-height: 300px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .chapter {
        padding: 1.5rem;
    }
    
    .submit-option {
        padding: 1.5rem;
    }
}

/* Editor Notes Styling */
.editor-notes {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #6c757d;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.editor-notes h4 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

.editor-notes h5 {
    color: #34495e;
    font-size: 1.2rem;
    margin: 25px 0 10px 0;
    font-weight: 600;
}

.editor-section {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.editor-section p {
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
}

.editor-notes > p:first-of-type {
    text-align: center;
    font-weight: bold;
    color: #7f8c8d;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* Podcast Embed Styling */
.podcast-embed {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.podcast-embed iframe {
    border-radius: 12px;
    width: 100%;
    height: 232px;
}

/* Music Section Styling */
.music-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.music-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--army-green-dark);
    margin-bottom: 3rem;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.music-player {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--army-green-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.music-player h3 {
    color: var(--army-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid var(--red);
    padding-bottom: 0.5rem;
}

.youtube-embed {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.youtube-embed iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.music-description {
    color: var(--army-green-dark);
    font-size: 0.95rem;
    text-align: center;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

/* Editor Notes Responsive */
@media (max-width: 768px) {
    .editor-notes {
        padding: 20px;
        margin: 20px 0;
    }

    .editor-notes h4 {
        font-size: 1.5rem;
    }

    .editor-notes h5 {
        font-size: 1.1rem;
    }

    .podcast-embed {
        margin-top: 1.5rem;
    }

    .podcast-embed iframe {
        height: 200px;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .music-player {
        padding: 1.5rem;
    }

    .youtube-embed iframe {
        height: 180px;
    }
}

/* Mobile Menu Styling */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(75, 83, 32, 0.95) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(58, 64, 25, 0.95) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(107, 122, 42, 0.9) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(75, 83, 32, 0.9) 0%, transparent 50%),
        linear-gradient(45deg, var(--army-green) 0%, var(--army-green-dark) 50%, var(--army-green-light) 100%);
    background-size: 200px 200px, 150px 150px, 180px 180px, 160px 160px, 100% 100%;
    background-position: 0 0, 50px 50px, 100px 100px, 150px 150px, 0 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-menu-content {
    text-align: center;
    color: var(--white);
    max-width: 400px;
    padding: 2rem;
}

.mobile-menu-header h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mobile-menu-header p {
    color: var(--yellow);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav li {
    margin-bottom: 1.5rem;
}

.mobile-menu-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1rem 2rem;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--red);
    color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu-link.home-link {
    background: rgba(220, 20, 60, 0.2);
    border-color: var(--red);
    color: var(--yellow);
    font-weight: bold;
}

.mobile-menu-link.home-link:hover {
    background: rgba(220, 20, 60, 0.3);
    border-color: var(--yellow);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-content {
        padding: 1rem;
    }
    
    .mobile-menu-header h2 {
        font-size: 1.5rem;
    }
    
    .mobile-menu-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card {
        padding: 1.5rem;
    }
    
    .mission-timeline .timeline-item {
        flex-direction: column;
    }
    
    .mission-timeline .timeline-date {
        flex: none;
        margin-bottom: 0.5rem;
    }
    
    .mission-timeline .timeline-content {
        padding-left: 0;
    }
    
    .mission-reflection {
        padding: 2rem;
    }
    
    .missions-section h2 {
        font-size: 2rem;
    }
    
    .latest-update-banner {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .latest-update-banner h2 {
        font-size: 1.8rem;
    }
    
    .update-description {
        font-size: 1.1rem;
    }
    
    .update-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .update-meta {
        flex-direction: column;
        gap: 1rem;
    }
}
