* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #000;
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #222;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 20% 80%, rgba(27, 56, 227, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(151, 253, 4, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    min-height: 100vh;
    padding-bottom: env(safe-area-inset-bottom);
}

/* Custom Scrollbar - Always on top */
::-webkit-scrollbar {
    width: 14px;
    z-index: 9999;
}

::-webkit-scrollbar-track {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(10, 10, 10, 0.8));
    border-left: 2px solid rgba(151, 253, 4, 0.1);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #97fd04 0%, #b0ff4d 50%, #1b38e3 100%);
    border-radius: 10px;
    border: 3px solid rgba(0, 0, 0, 0.5);
    box-shadow:
        0 0 6px rgba(151, 253, 4, 0.5),
        inset 0 0 6px rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b0ff4d 0%, #c9ff80 50%, #3d5af1 100%);
    box-shadow:
        0 0 10px rgba(151, 253, 4, 0.8),
        inset 0 0 8px rgba(255, 255, 255, 0.4);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #c9ff80 0%, #e2ffb3 50%, #5a75f9 100%);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #97fd04 rgba(0, 0, 0, 0.5);
}

html {
    scrollbar-gutter: stable;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(151, 253, 4, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid rgba(151, 253, 4, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #97fd04 0%, #b0ff4d 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    position: relative;
}

.logo-accent {
    width: 6px;
    height: 40px;
    background: linear-gradient(180deg, #97fd04, #1b38e3);
    border-radius: 3px;
    animation: pulse-accent 3s ease-in-out infinite;
}

@keyframes pulse-accent {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.7;
        transform: scaleY(1.2);
    }
}

.header-subtitle {
    font-size: 0.8rem;
    color: rgba(151, 253, 4, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-left: 1rem;
}

.mobile-menu-toggle {
    display: none !important;
    background: none;
    border: none;
    color: #97fd04;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: transform 0.3s ease;
    visibility: hidden;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Navigation Bar - Premium Look */
.navbar {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(15px);
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 60px;
}

.nav-item {
    margin: 0 0.5rem;
}

.nav-link {
    display: block;
    padding: 1rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #97fd04, #1b38e3);
    transition: width 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(151, 253, 4, 0.1);
    border: 1px solid rgba(151, 253, 4, 0.2);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Main Content */
main {
    flex: 1 0 auto;
    margin-top: 140px;
    padding: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Page Content Sections */
.page-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.page-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Sections - Clean without animation */
.hero {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 1.3rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #97fd04 0%, #b0ff4d 100%);
    color: #1b38e3;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(151, 253, 4, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(151, 253, 4, 0.4);
}

/* Unified Schedule Container */
.schedule-container {
    margin-top: 0.5rem;
}

.schedule-unified {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.schedule-unified::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #97fd04, #1b38e3);
}

.schedule-unified:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(151, 253, 4, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.schedule-section {
    flex: 1;
    text-align: center;
}

.schedule-section h3 {
    color: #97fd04;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.schedule-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.schedule-section strong {
    color: rgba(151, 253, 4, 0.9);
}

.schedule-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(151, 253, 4, 0.3), transparent);
    margin: 0 2rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 0.5rem;
}

.schedule-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #97fd04, #1b38e3);
}

.schedule-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(151, 253, 4, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.schedule-card h3 {
    color: #97fd04;
    margin-bottom: 1rem;
    font-weight: 700;
}

.schedule-card p {
    color: rgba(255, 255, 255, 0.8);
}

.schedule-card strong {
    color: rgba(151, 253, 4, 0.9);
}

/* Info Cards - Dark Modern Theme */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #97fd04, #1b38e3);
}

.info-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(151, 253, 4, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.info-card h3 {
    color: #97fd04;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.info-card ul {
    color: rgba(255, 255, 255, 0.8);
}

.info-card ul li {
    margin-bottom: 0.5rem;
}

/* Team Section Styles */
.team-section {
    margin: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #97fd04;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-width: 600px;
    justify-self: center;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #97fd04, #1b38e3);
}

.team-member:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(151, 253, 4, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.4s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    color: #97fd04;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-role {
    color: rgba(151, 253, 4, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-info p:not(.team-role) {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact Form - Match the dark glass theme */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #97fd04, #1b38e3);
}

.contact-form h3 {
    color: #97fd04 !important;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(151, 253, 4, 0.9);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: rgba(10, 10, 10, 0.95);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #97fd04;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(151, 253, 4, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Footer - Minimalist Premium */
.footer {
    flex-shrink: 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #97fd04, transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(151, 253, 4, 0.2), rgba(27, 56, 227, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(151, 253, 4, 0.1);
    border-color: rgba(151, 253, 4, 0.4);
    color: #97fd04;
    box-shadow: 0 8px 25px rgba(151, 253, 4, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Specific social media colors on hover */
.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.4);
    color: #1877f2;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.2);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.2), rgba(255, 220, 128, 0.2));
    border-color: rgba(225, 48, 108, 0.4);
    color: #e1306c;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.2);
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.4);
    color: #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.social-link.tiktok:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #97fd04 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(151, 253, 4, 0.7);
    font-weight: 300;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #97fd04;
    transform: translateX(5px);
}

.footer-credits {
    text-align: right;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credits .highlight {
    color: #97fd04;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Training Programs Section */
.training-programs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.training-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #97fd04, #1b38e3);
}

.training-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(151, 253, 4, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.training-card:nth-child(1) {
    animation-delay: 0.2s;
}

.training-card:nth-child(2) {
    animation-delay: 0.4s;
}

.training-card:nth-child(3) {
    animation-delay: 0.6s;
}

.training-card.reverse {
    direction: rtl;
}

.training-card.reverse>* {
    direction: ltr;
}

.training-card-image {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.training-card:hover .training-card-image {
    box-shadow: 0 15px 50px rgba(151, 253, 4, 0.3);
}

.training-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.training-card:hover .training-card-image img {
    transform: scale(1.05);
}

.training-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(151, 253, 4, 0.15), rgba(27, 56, 227, 0.15));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.training-card:hover .training-overlay {
    opacity: 1;
}

.training-card-content {
    padding: 1.5rem;
}

.training-card-content h3 {
    font-size: 2rem;
    color: #97fd04;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.training-card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #97fd04, #1b38e3);
    border-radius: 2px;
}

.training-card-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive Design */
@media (max-width: 968px) {

    .training-card,
    .training-card.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
        padding: 1.5rem;
    }

    .training-card-image {
        height: 300px;
    }

    .training-card-content {
        padding: 1rem;
    }

    .training-card-content h3 {
        font-size: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0 1.5rem;
        height: 70px;
        justify-content: center;
    }

    .logo-container {
        justify-content: center;
        width: 100%;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .logo-accent {
        height: 30px;
    }

    .header-subtitle {
        display: none;
    }

    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
    }

    .navbar {
        top: 70px;
        transform: translateX(0);
    }

    .nav-menu {
        flex-wrap: nowrap;
        height: 60px;
        padding: 0;
        justify-content: space-evenly;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .nav-item {
        margin: 0;
        flex-shrink: 0;
    }

    .nav-link {
        padding: 0.7rem 0.8rem;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .nav-link::after {
        bottom: 5px;
    }

    main {
        margin-top: 140px;
        padding: 1rem;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .schedule-unified {
        flex-direction: column;
        padding: 1.5rem;
    }

    .schedule-divider {
        width: 100%;
        height: 1px;
        margin: 1.5rem 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .team-photo {
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-credits {
        text-align: center;
    }
}

/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(27, 56, 227, 0.3);
    border-radius: 50%;
    border-top-color: #1b38e3;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

:root {
    color-scheme: dark;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 260px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

.carousel-track {
    display: flex;
    gap: 5px;
    height: 100%;

    padding-left: 24px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 400px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.carousel-card:hover {
    transform: scale(1.03);
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border: none;
    padding: 10px 14px;
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.carousel-wrapper:hover .carousel-arrow {
    opacity: 1;
}

.carousel-arrow.left {
    left: 10px;
}

.carousel-arrow.right {
    right: 10px;
}

@media (max-width: 768px) {
    .carousel-wrapper {
        height: 200px;
    }

    .carousel-card {
        flex: 0 0 220px;
    }
}

.owners-extra-photo {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.owners-extra-photo img {
    width: 500px;
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.owners-extra-photo img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

/* responsive adjustments */
@media (max-width: 768px) {
    .owners-extra-photo img {
        width: 400px;
    }
}

#announcement-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #97fd04;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: bounce 1.8s infinite ease-in-out;
    user-select: none;
}

#announcement-button.viewed {
    animation: none;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

#announcement-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

#announcement-popup .popup-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 2rem;
    width: 90%;
    max-width: 450px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    color: #fff;
}

#announcement-close {
    margin-top: 1rem;
    background: #97fd04;
    color: #000;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

#announcement-button .notification-dot {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 12px;
    height: 12px;
    background: #ff3b3b;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.8);
}