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

:root {
    --primary-color: #cc0000;
    --secondary-color: #000000;
    --accent-color: #ff0000;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --bg-dark: #000000;
    --bg-gray: #374151;
    --bg-light: #f5f5f5;
    --gradient-primary: linear-gradient(135deg, #cc0000 0%, #ff0000 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #374151 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 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;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

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

.logo h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for better mobile support */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px; /* Add padding to ensure content is visible */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    opacity: 0.8;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ff6b35" opacity="0.3"><animate attributeName="opacity" values="0.1;0.5;0.1" dur="4s" repeatCount="indefinite"/></circle><circle cx="35" cy="25" r="1.5" fill="%23f7931e" opacity="0.25"><animate attributeName="opacity" values="0.05;0.4;0.05" dur="6s" repeatCount="indefinite"/></circle><circle cx="20" cy="40" r="1" fill="%23ff6b35" opacity="0.2"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="5s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: floatingCircles 30s ease-in-out infinite;
    transform: translate(-10%, -10%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.1) 0%, 
        rgba(45, 27, 105, 0.15) 25%, 
        rgba(247, 147, 30, 0.1) 50%, 
        rgba(45, 27, 105, 0.15) 75%, 
        rgba(255, 107, 53, 0.1) 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease-in-out infinite;
}

@keyframes floatingCircles {
    0%, 100% { 
        transform: translate(-10%, -10%) scale(1); 
        filter: blur(0px);
    }
    15% { 
        transform: translate(-8%, -12%) scale(1.05); 
        filter: blur(0.5px);
    }
    30% { 
        transform: translate(-12%, -8%) scale(1.02); 
        filter: blur(0px);
    }
    45% { 
        transform: translate(-6%, -14%) scale(1.08); 
        filter: blur(1px);
    }
    60% { 
        transform: translate(-14%, -6%) scale(1.03); 
        filter: blur(0px);
    }
    75% { 
        transform: translate(-9%, -11%) scale(1.06); 
        filter: blur(0.5px);
    }
    90% { 
        transform: translate(-11%, -9%) scale(1.04); 
        filter: blur(0px);
    }
}

@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%; 
        opacity: 1;
    }
    25% { 
        background-position: 100% 50%; 
        opacity: 0.8;
    }
    50% { 
        background-position: 100% 100%; 
        opacity: 1;
    }
    75% { 
        background-position: 0% 100%; 
        opacity: 0.9;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-video {
    max-width: 600px;
    margin: 0 auto;
}

.video-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Featured Video Section */
.featured-video {
    padding: 100px 0;
    background: var(--bg-dark);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
    line-height: 0;
}

.featured-video-embed {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
    vertical-align: top;
}

.hero .featured-video-embed {
    height: 300px;
}

/* Hero Updates Section */
.hero-updates {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.updates-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-updates .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 100%;
}

/* Acronym Section */
.acronym-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.acronym-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    opacity: 0.8;
}

.acronym-panel {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.acronym-main {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.acronym-breakdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.acronym-letter {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.acronym-letter:hover {
    transform: translateY(-5px);
}

.acronym-letter .letter {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.acronym-letter:hover .letter {
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(247, 147, 30, 0.8);
    transform: scale(1.1);
}

.acronym-letter .word {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.acronym-letter:hover .word {
    color: var(--accent-color);
    opacity: 1;
}

.acronym-separator {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 1rem;
    opacity: 0.7;
}

.acronym-tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.8;
    font-style: italic;
    font-weight: 300;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: var(--bg-gray);
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

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

.blog-post {
    background: var(--bg-dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-image-placeholder::before {
    content: '🎵';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.blog-image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="music-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23music-pattern)"/></svg>');
    animation: float 6s ease-in-out infinite;
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.blog-description {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.youtube-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.youtube-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
}

.youtube-link:hover::before {
    left: 0;
}

.youtube-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    border-color: var(--accent-color);
}

.youtube-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.youtube-link:hover .youtube-icon {
    transform: scale(1.2) rotate(5deg);
}

.youtube-text {
    font-size: 1rem;
    transition: var(--transition);
}

.youtube-link:hover .youtube-text {
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.youtube-arrow {
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--primary-color);
}

.youtube-link:hover .youtube-arrow {
    transform: translateX(5px);
    color: var(--text-light);
}

/* Links Page */
.links-hero, .about-hero {
    padding: 150px 0 100px;
    text-align: center;
    background: var(--gradient-dark);
}

.page-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.links-section {
    padding: 100px 0;
    background: var(--bg-gray);
}

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

.link-card {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: var(--bg-dark);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: var(--transition);
}

.link-card:hover::before {
    left: 0;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.link-icon {
    font-size: 2rem;
    margin-right: 1rem;
    position: relative;
    z-index: 2;
}

.link-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.link-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.link-content p {
    opacity: 0.9;
}

.link-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.link-card:hover .link-arrow {
    transform: translateX(5px);
}

/* Events Page */
.events-hero {
    padding: 150px 0 100px;
    text-align: center;
    background: var(--gradient-dark);
}

.events-content {
    padding: 100px 0;
    background: var(--bg-gray);
}

.calendar-container {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: var(--bg-dark);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
}

.calendar-embed {
    width: 100%;
    height: 600px;
    border: solid 1px rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    background: var(--bg-light);
}

.events-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.events-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.events-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.events-cta {
    margin-top: 2rem;
}

/* About Page */
.about-content {
    padding: 100px 0;
    background: var(--bg-gray);
}

.about-image {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 3px solid var(--primary-color);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.text-block {
    margin-bottom: 2rem;
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.text-block p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    padding: 2px 4px;
    border-radius: 4px;
}

.text-block p a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.1), rgba(255, 0, 0, 0.15));
    opacity: 0;
    transition: var(--transition);
    border-radius: 4px;
    z-index: -1;
}

.text-block p a:hover::before {
    opacity: 1;
}

.text-block p a:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    border-bottom-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 79px;
        left: 0;
        width: 100%;
        height: calc(100vh - 79px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0;
        text-align: center;
        z-index: 999;
        border-bottom: 1px solid rgba(255, 107, 53, 0.2);
        justify-content: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transition: var(--transition);
        border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    }
    
    .nav-links li:last-child a {
        border-bottom: none;
    }
    
    .nav-links a:hover {
        background: rgba(255, 107, 53, 0.1);
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        min-height: 100vh;
        min-height: 100svh; /* Small viewport height for mobile */
        padding: 100px 0 40px;
        align-items: flex-start;
        justify-content: center;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
        gap: 0.8rem;
    }
    
    .btn {
        width: 200px;
        padding: 0.8rem 1.5rem;
    }
    
    .hero-video {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .video-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .hero .featured-video-embed {
        height: 220px;
    }
    
    .hero-updates {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .updates-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-updates .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .link-card {
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .link-icon {
        margin-right: 0;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .acronym-panel {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
        border-radius: 15px;
    }
    
    .acronym-main {
        letter-spacing: 2px;
        margin-bottom: 2rem;
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .acronym-breakdown {
        gap: 1.5rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .acronym-letter {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        background: rgba(255, 107, 53, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 107, 53, 0.15);
        transition: all 0.3s ease;
    }
    
    .acronym-letter:hover {
        background: rgba(255, 107, 53, 0.1);
        border-color: rgba(255, 107, 53, 0.3);
        transform: translateY(-2px);
    }
    
    .acronym-letter .letter {
        font-size: 2.5rem;
        margin-bottom: 0;
        margin-right: 1rem;
        min-width: 50px;
        text-align: center;
    }
    
    .acronym-letter .word {
        font-size: 1rem;
        flex: 1;
        text-align: left;
        font-weight: 500;
    }
    
    .acronym-separator {
        display: block;
        width: 60%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        margin: 1rem auto;
        border: none;
        opacity: 0.5;
    }
    
    .acronym-tagline {
        margin-top: 2rem;
        font-size: 1.1rem;
        padding: 1rem;
        background: rgba(45, 27, 105, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(45, 27, 105, 0.2);
    }
    
    .calendar-container {
        padding: 1rem 0;
        margin: 0 0 2rem;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }
    
    .calendar-embed {
        height: 400px;
        border: none;
        border-radius: 0;
    }
    
    .events-subtitle {
        font-size: 2rem;
    }
}

/* Extra styles for very small screens (iPhone SE, etc.) */
@media (max-width: 480px) and (max-height: 700px) {
    .hero {
        min-height: auto;
        padding: 80px 0 20px;
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero .featured-video-embed {
        height: 180px;
    }
    
    .video-title {
        font-size: 1.1rem;
    }
    
    .hero-updates {
        margin-top: 1.5rem;
    }
    
    .updates-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}

/* Additional mobile improvements for acronym section */
@media (max-width: 480px) {
    .acronym-section {
        padding: 60px 0;
    }
    
    .acronym-panel {
        padding: 2rem 1rem;
        margin: 0 0.5rem;
    }
    
    .acronym-main {
        font-size: clamp(2rem, 12vw, 3rem);
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }
    
    .acronym-letter {
        padding: 0.8rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .acronym-letter .letter {
        font-size: 2rem;
        margin-right: 0;
        margin-bottom: 0.3rem;
        min-width: auto;
    }
    
    .acronym-letter .word {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .acronym-separator {
        width: 40%;
        margin: 0.5rem auto;
    }
    
    .acronym-tagline {
        font-size: 1rem;
        padding: 0.8rem;
        margin-top: 1.5rem;
    }
}