* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
::-webkit-scrollbar { width: 12px; background: #001428; }
::-webkit-scrollbar-track { background: #001428; border-radius: 0; }
::-webkit-scrollbar-thumb {
    background-color: #ff6b00;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.2) 5px, rgba(255, 255, 255, 0.2) 10px);
    border-radius: 6px;
    border: 2px solid #001428;
}
::-webkit-scrollbar-thumb:hover { background-color: #e65c00; }
::selection { background-color: #ff6b00; color: #fff; }
::-moz-selection { background-color: #ff6b00; color: #fff; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background-color: #f4f5f7;
    background-image: radial-gradient(#d1d1d1 1px, transparent 1px);
    background-size: 20px 20px;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

body.loaded .hero-content h1 { 
    animation: slideDown 1s ease-out forwards; 
    animation-delay: 0.6s; 
    font-size: 5rem; 
    font-weight: 900; 
    margin-bottom: 15px; 
    line-height: 1.1; 
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.6), 
        0 15px 35px rgba(0, 0, 0, 0.5), 
        0 0 25px rgba(255, 255, 255, 0.2);
}

#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: #001428; z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.text-fill-loader {
    font-family: 'Montserrat', sans-serif;
    font-size: 90px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    position: relative;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.text-fill-loader::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    color: #ff6b00;
    -webkit-text-stroke: 0px transparent;
    overflow: hidden;
    animation: fillText 2s ease-in-out infinite alternate;
    border-right: 4px solid #ffffff;
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.9));
}

@keyframes fillText {
    0% { width: 0%; }
    100% { width: 100%; }
}
@keyframes fillText {
    0% { width: 0%; }
    100% { width: 100%; }
}
body.loaded #preloader { transform: translateY(-100%); }
body.loaded .preloader-content { opacity: 0; transition: opacity 0.3s ease; }
.preloader-content { display: flex; flex-direction: column; align-items: center; }
.volley-ball-bounce {
    width: 70px; height: 70px; background: #fff; border-radius: 50%;
    box-shadow: inset -5px -5px 10px rgba(0,0,0,0.1), 0 10px 20px rgba(0,0,0,0.3);
    display: flex; justify-content: center; align-items: center;
    animation: bounceHigh 0.5s alternate infinite ease-in;
    margin-bottom: 15px;
}
.volley-ball-bounce i { font-size: 66px; color: #ff6b00; animation: spinFast 1.5s linear infinite; }
.volley-shadow {
    width: 40px; height: 8px; background: rgba(0, 0, 0, 0.6);
    border-radius: 50%; animation: shadowScale 0.6s alternate infinite ease-in;
    margin-bottom: 30px; filter: blur(2px);
}
.preloader-text { color: #ff6b00; font-size: 1.2rem; font-weight: 800; letter-spacing: 2px; animation: pulseText 1.5s infinite; }
.preloader-counter { color: #fff; font-size: 3rem; font-weight: 900; margin-top: 5px; }

@keyframes bounceHigh { 0% { transform: translateY(0); } 100% { transform: translateY(-120px); } }
@keyframes spinFast { 100% { transform: rotate(360deg); } }
@keyframes shadowScale { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(0.3); opacity: 0.1; } }
@keyframes pulseText { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

h1, h2, h3 { text-transform: uppercase; }
a { text-decoration: none; color: inherit; }

nav {
    position: fixed; top: 0; width: 100%; background: transparent;
    padding: 20px 50px; display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled, nav.solid-nav {
    background: rgba(0, 20, 40, 0.98); padding: 10px 50px; box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.logo { color: #fff; font-weight: 900; font-size: 1.5rem; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; z-index: 1001; }
.logo i { color: #ff6b00; animation: spinSlow 5s linear infinite; }
.logo span { color: #ff6b00; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { color: #fff; font-weight: 600; font-size: 0.85rem; transition: color 0.3s ease, transform 0.3s ease; display: flex; align-items: center; gap: 5px; }
.nav-links a:hover { color: #ff6b00; transform: translateY(-2px); }
.menu-toggle { display: none; color: #fff; font-size: 1.8rem; cursor: pointer; z-index: 1001; }

.btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 15px 35px;
    background-color: #ff6b00; color: #fff; font-weight: 800; border-radius: 5px;
    transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3); position: relative; overflow: hidden;
}
.btn::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); transition: all 0.6s ease;
}
.btn:hover::after { left: 150%; }
.btn:hover { background-color: #e65c00; transform: scale(1.05) translateY(-3px); box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5); }
.btn-pulse { animation: pulseGlow 2s infinite; }

@keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); } }

header#start {
    height: 100vh;
    background: linear-gradient(rgba(0, 20, 40, 0.7), rgba(0, 20, 40, 0.95)), url('../gallery/IMG_7210.jpg') center/cover no-repeat;
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: #fff; padding: 20px; position: relative;
}
.hero-content h1, .hero-content .subtitle, .hero-content p, .hero-content .btn { opacity: 0; }
body.loaded .hero-content h1 { animation: slideDown 1s ease-out forwards; animation-delay: 0.6s; font-size: 5rem; font-weight: 900; margin-bottom: 15px; line-height: 1.1; text-shadow: 0 5px 15px rgba(0,0,0,0.5); }
body.loaded .hero-content .subtitle { animation: slideUp 1s ease-out forwards; animation-delay: 0.9s; font-size: 1.8rem; color: #ff6b00; font-weight: 800; margin-bottom: 30px; }
body.loaded .hero-content p { animation: fadeIn 1s ease-out forwards; animation-delay: 1.2s; font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px; color: #ddd; }
body.loaded .hero-content .btn { animation: fadeIn 1s ease-out forwards; animation-delay: 1.5s; }
.scroll-indicator { position: absolute; bottom: 40px; color: #ff6b00; font-size: 2.5rem; animation: bounce 2s infinite; transition: opacity 0.3s ease; }

@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-20px); } 60% { transform: translateY(-10px); } }
@keyframes spinSlow { 100% { transform: rotate(360deg); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; overflow: hidden; }
.section-title { text-align: center; font-size: 3rem; margin-bottom: 60px; color: #001428; position: relative; display: flex; justify-content: center; align-items: center; gap: 15px; }
.section-title i { color: #ff6b00; }
.section-title::after { content: ''; display: block; width: 60px; height: 5px; background-color: #ff6b00; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); }

.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; justify-content: center; }
.news-card { background: #fff; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; height: 100%; }
.news-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.news-media { width: 100%; height: 200px; object-fit: cover; }
.news-video { width: 100%; height: 200px; border: none; }
.news-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.news-date { font-size: 0.85rem; color: #ff6b00; font-weight: 800; margin-bottom: 10px; display: block; }
.news-title { font-size: 1.4rem; color: #001428; margin-bottom: 15px; line-height: 1.3; min-height: 2.6em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-text { color: #666; font-size: 1rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 0; }

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; }
.tag { background: rgba(255, 107, 0, 0.1); color: #ff6b00; padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(255, 107, 0, 0.2); transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 5px; text-decoration: none; }
.tag i { font-size: 0.8rem; }
.tag:hover { background: #ff6b00; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-text p { font-size: 1.1rem; margin-bottom: 20px; text-align: justify; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box { background: #001428; color: #fff; padding: 30px 20px; border-radius: 8px; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.stat-box i { font-size: 2.5rem; color: #ff6b00; margin-bottom: 15px; transition: transform 0.3s ease; }
.stat-box:hover { transform: translateY(-10px) scale(1.05); background: #002244; }
.stat-box:hover i { transform: scale(1.2) rotate(10deg); }
.stat-number { font-family: 'Teko', sans-serif; font-size: 4.5rem; font-weight: 700; margin-bottom: -10px; line-height: 1; color: #ffffff; font-style: italic; text-shadow: 3px 3px 0 #001428; }

.schedule-container { background: #fff; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.schedule-row { display: flex; padding: 25px 40px; border-bottom: 1px solid #eee; align-items: center; transition: all 0.3s ease; position: relative; overflow: hidden; }
.schedule-row::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 5px; background: #ff6b00; transform: scaleY(0); transition: transform 0.3s ease; }
.schedule-row:hover { background: #fcfcfc; transform: translateX(10px); }
.schedule-row:hover::before { transform: scaleY(1); }
.schedule-row:last-child { border-bottom: none; background: #001428; color: #fff; border-radius: 0 0 10px 10px; }
.schedule-row:last-child:hover { background: #002244; }
.schedule-row:last-child .s-date { color: #ff6b00; }
.schedule-row.past { opacity: 0.6; background: #f0f0f0; }
.schedule-row.past:hover { transform: translateX(0); }
.schedule-row.past::before { background: #999; transform: scaleY(1); }
.s-date { font-size: 1.5rem; font-weight: 900; color: #001428; width: 220px; display: flex; align-items: center; gap: 10px; }
.s-date i { color: #ff6b00; font-size: 1.2rem; }
.s-city { font-size: 1.3rem; font-weight: 600; flex-grow: 1; display: flex; align-items: center; gap: 10px; }
.s-status { font-weight: 800; text-transform: uppercase; font-size: 0.9rem; background: #eee; padding: 5px 15px; border-radius: 20px; display: flex; align-items: center; gap: 5px; }
.schedule-row:last-child .s-status { background: #ff6b00; color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { overflow: hidden; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); height: 250px; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }

.org-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.org-card { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-top: 5px solid #001428; transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; }
.org-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.org-icon { font-size: 3rem; color: #ff6b00; margin-bottom: 20px; }
.org-card h3 { margin-bottom: 15px; color: #001428; font-size: 1.5rem; }
.org-card ul { margin-top: 20px; text-align: left; list-style: none; }
.org-card li { margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.org-card li i { color: #ff6b00; margin-top: 5px; }

.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.tech-card { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-top: 5px solid #ff6b00; transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; display: flex; flex-direction: column; align-items: center; }
.tech-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.tech-image { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; border: 3px solid #001428; }
.tech-icon { font-size: 3rem; color: #001428; margin-bottom: 20px; }
.tech-card h3 { color: #001428; font-size: 1.5rem; margin-bottom: 15px; }
.tech-card p { color: #666; font-size: 1.1rem; line-height: 1.6; text-align: justify; }

.sponsor-section { background: #001428; color: #fff; padding: 80px 40px; text-align: center; border-radius: 10px; box-shadow: inset 0 0 50px rgba(0,0,0,0.5); }
.sponsor-section .section-title { color: #fff; }
.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 50px; margin-bottom: 50px; }
.s-benefit { background: rgba(255, 255, 255, 0.05); padding: 25px 20px; border-radius: 8px; font-weight: 600; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; gap: 15px; border: 1px solid rgba(255,255,255,0.1); }
.s-benefit i { font-size: 2rem; color: #ff6b00; transition: transform 0.3s ease; }
.s-benefit:hover { background: rgba(255, 107, 0, 0.1); border-color: #ff6b00; transform: translateY(-5px); }
.s-benefit:hover i { transform: scale(1.2); }

.partners-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 50px; margin-top: 40px; }
.partner-logo { width: 180px; height: 100px; display: flex; justify-content: center; align-items: center; }
.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: all 0.3s ease; cursor: pointer; }
.partner-logo img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }

.contact-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; }
.contact-card { background: #fff; padding: 50px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 100%; max-width: 600px; margin-bottom: 30px; position: relative; overflow: hidden; }
.contact-card::before { content: '\f095'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: -20px; right: -20px; font-size: 10rem; color: rgba(255, 107, 0, 0.05); transform: rotate(-15deg); }
.contact-card h3 { font-size: 2rem; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.contact-card p { font-size: 1.2rem; color: #666; margin-bottom: 20px; }
.contact-card .phone { font-size: 2.5rem; font-weight: 900; color: #ff6b00; margin-bottom: 30px; display: inline-flex; align-items: center; gap: 15px; transition: transform 0.3s ease; }
.contact-card .phone:hover { transform: scale(1.05); }

footer { background: #000b16; color: #fff; text-align: center; padding: 30px; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.footer-socials { display: flex; gap: 20px; font-size: 1.5rem; }
.footer-socials a { color: #fff; transition: color 0.3s ease; }
.footer-socials a:hover { color: #ff6b00; }
.copyright { margin-top: 20px; font-size: 0.9rem; color: #888; }
.author-box { margin-top: 15px; padding: 15px 30px; background: rgba(255, 107, 0, 0.05); border: 1px solid rgba(255, 107, 0, 0.1); border-radius: 8px; display: flex; flex-direction: column; align-items: center; gap: 5px; color: #ccc; transition: all 0.3s ease; }
.author-box:hover { background: rgba(255, 107, 0, 0.1); border-color: rgba(255, 107, 0, 0.3); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255, 107, 0, 0.15); }
.author-box i.fa-code { color: #ff6b00; font-size: 1.2rem; margin-bottom: 5px; }
.author-name { color: #fff; font-size: 1.3rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: all 0.3s ease; }
.author-name:hover { color: #ff6b00; text-shadow: 0 0 15px rgba(255, 107, 0, 0.5); transform: scale(1.05); }
.author-website { color: #ff6b00; font-weight: 600; font-size: 0.95rem; text-decoration: none; display: flex; align-items: center; gap: 5px; transition: color 0.3s ease; margin-top: 5px; }
.author-website:hover { color: #fff; }
.admin-link { opacity: 0.2; color: #fff; font-size: 0.8rem; transition: opacity 0.3s; }
.admin-link:hover { opacity: 1; }
.post-header, .archive-header {
    background: #001428;
    color: #fff;
    padding: 180px 20px 100px 20px;
    text-align: center;
    margin-top: 0;
    position: relative;
    z-index: 1;
}
.post-header h1, .archive-header h1 {
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.post-header h1 { font-size: 3rem; color: #001428; max-width: 900px; margin: 0 auto 20px; text-transform: uppercase; line-height: 1.2; }
.post-date { color: #ff6b00; font-weight: 800; font-size: 1.1rem; margin-bottom: 15px; display: inline-block; }
.post-content-wrap {
    max-width: 900px;
    margin: -40px auto 60px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}
.post-media {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.post-video { width: 100%; height: 500px; border: none; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-bottom: 40px; background: #000; }
.post-text { font-size: 1.15rem; color: #333; line-height: 1.8; background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); margin-bottom: 40px; }
.gallery-section { margin-top: 50px; }
.gallery-section h3 { font-size: 2rem; margin-bottom: 25px; color: #001428; text-transform: uppercase; }
.gallery-grid-post { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.gallery-grid-post img { width: 100%; height: 200px; object-fit: cover; border-radius: 5px; cursor: pointer; transition: transform 0.3s ease; }
.gallery-grid-post img:hover { transform: scale(1.05); }
.btn-back { display: inline-flex; align-items: center; gap: 10px; padding: 15px 35px; background-color: #001428; color: #fff; font-weight: 800; border-radius: 5px; transition: background-color 0.3s ease; text-transform: uppercase; margin-top: 50px; }
.btn-back:hover { background-color: #ff6b00; }
.archive-header h1 { font-size: 3rem; text-transform: uppercase; }
.anim-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.anim-right { opacity: 0; transform: translateX(50px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.anim-up { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.anim-zoom { opacity: 0; transform: scale(0.8); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.anim-left.visible, .anim-right.visible, .anim-up.visible { opacity: 1; transform: translate(0); }
.anim-zoom.visible { opacity: 1; transform: scale(1); }

@media (max-width: 992px) {
    nav { padding: 15px 30px; }
    nav.scrolled, nav.solid-nav { padding: 10px 30px; }
    .hero-content h1 { font-size: 4rem; }
}
@media (max-width: 768px) {
    nav { padding: 15px 20px; }
    nav.scrolled, nav.solid-nav { padding: 10px 20px; }
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%; background: rgba(0, 20, 40, 0.98);
        flex-direction: column; padding: 0; gap: 0; clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-out;
    }
    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-links a { padding: 20px; justify-content: center; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 1.1rem; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content .subtitle { font-size: 1.3rem; }
    .about-grid, .tech-grid { grid-template-columns: 1fr; }
    .schedule-row { flex-direction: column; text-align: center; gap: 15px; padding: 20px; }
    .s-date, .s-city, .s-status { justify-content: center; width: 100%; }
    .sponsor-section { padding: 50px 20px; }
    .section-title { font-size: 2.2rem; }
    .post-header h1, .archive-header h1 { font-size: 2rem; }
    .post-video { height: 250px; }
    .post-text { padding: 20px; font-size: 1rem; }
}
@media (max-width: 992px) {
    nav { padding: 15px 30px; }
    nav.scrolled, nav.solid-nav { padding: 10px 30px; }
    body.loaded .hero-content h1 { font-size: 4rem; }
}

@media (max-width: 768px) {
    nav { padding: 15px 20px; }
    nav.scrolled, nav.solid-nav { padding: 10px 20px; }
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%; background: rgba(0, 20, 40, 0.98);
        flex-direction: column; padding: 0; gap: 0; clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-out;
    }
    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-links a { padding: 20px; justify-content: center; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 1.1rem; }
    
    body.loaded .hero-content h1 { font-size: 3.2rem; margin-bottom: 15px; line-height: 1.1; }
    body.loaded .hero-content .subtitle { font-size: 1.4rem; margin-bottom: 20px; }
    body.loaded .hero-content p { font-size: 1.1rem; margin-bottom: 30px; }
    
    .section-title { font-size: 2.2rem; flex-wrap: wrap; line-height: 1.4; gap: 10px; }
    .about-grid, .tech-grid { grid-template-columns: 1fr; }
    .schedule-row { flex-direction: column; text-align: center; gap: 15px; padding: 20px; }
    .s-date, .s-city, .s-status { justify-content: center; width: 100%; }
    .sponsor-section { padding: 50px 20px; }
    .post-header h1, .archive-header h1 { font-size: 2rem; }
    .post-video { height: 250px; }
    .post-text { padding: 20px; font-size: 1.05rem; }
}

@media (max-width: 480px) {
    body.loaded .hero-content h1 { font-size: 2.6rem; margin-bottom: 15px; }
    body.loaded .hero-content .subtitle { font-size: 1.2rem; margin-bottom: 20px; }
    body.loaded .hero-content p { font-size: 1.05rem; margin-bottom: 30px; line-height: 1.5; }
    
    .section-title { font-size: 1.9rem; }
    .about-stats { grid-template-columns: 1fr; }
    .stat-number { font-size: 2.5rem; }
    .btn { padding: 12px 25px; font-size: 1rem; }
    .contact-card { padding: 30px 20px; }
    .contact-card .phone { font-size: 1.6rem; }
    .news-grid, .gallery-grid, .org-grid, .sponsor-grid, .gallery-grid-post { grid-template-columns: 1fr !important; }
    section { padding: 50px 15px !important; }
    .post-content-wrap { padding: 0 15px !important; }
    .news-video, .post-video, img { max-width: 100% !important; }
    h1, h2, h3, p, a, .news-title { word-wrap: break-word; overflow-wrap: break-word; }
}