/* 변수 설정 */
:root {
    --primary-color: #4a90e2;
    --accent-color: #ff6b6b;
    --bg-color: #f5f7fa;
    --text-color: #333;
    --white: #ffffff;
    --primary-red: #8b1d23;
    --dark-gray: #333333;
    --soft-beige: #d4cfc1;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 전체 드래그 금지 및 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 헤더 스타일 */
header {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    background:
        radial-gradient(900px circle at 15% 20%, rgba(120, 170, 255, 0.18), transparent 60%),
        radial-gradient(800px circle at 85% 25%, rgba(200, 160, 255, 0.18), transparent 60%),
        radial-gradient(900px circle at 50% 85%, rgba(150, 230, 200, 0.16), transparent 65%),
        linear-gradient(180deg, #f8fafc, #eef2f7);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

/* 은은한 빛 번짐 레이어 */
body::before {
    content: "";
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background:
        radial-gradient(circle at 25% 35%, rgba(120, 170, 255, 0.12), transparent 60%),
        radial-gradient(circle at 70% 65%, rgba(255, 180, 200, 0.10), transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(180, 255, 200, 0.08), transparent 65%);
    filter: blur(120px);
    animation: auroraMove 25s infinite alternate ease-in-out;
    z-index: -1;
}

.top-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 메인 영역 스타일 */
main {
    padding: 2rem 5%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-section {
    margin-bottom: 3rem;
    padding: 60px 20px;
    background: linear-gradient(
        135deg,
        rgba(106, 17, 203, 0.85),
        rgba(37, 117, 252, 0.85)
    );
    backdrop-filter: blur(25px);
    color: white;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-section p {
    opacity: 0.9;
    font-size: 17px;
}

.card,
.card1 {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 10px rgba(255, 255, 255, 0.4);
    animation: fadeUp 0.7s ease;
}

.card1 h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 3px solid rgba(74, 144, 226, 0.4);
    letter-spacing: 0.5px;
}

.card p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #666;
}

.btn-apply {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-apply:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 3rem;
    width: 100%;
    max-width: 900px;
}

.info-item {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 22px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 0 8px rgba(255, 255, 255, 0.4);
    text-align: center;
    transition: 0.3s;
}

.info-item p {
    font-size: 15px;
    color: #444;
}

/* --- 일정/행사 타임라인 스타일 --- */
.event-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.event-item {
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.event-date {
    font-size: 13px;
    font-weight: bold;
    color: #3A9BFF;
    background: rgba(58, 155, 255, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 5px;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.event-desc {
    font-size: 0.9rem;
    color: #666;
}

/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 25px;
    border-radius: 20px;
    width: 85%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
    border: none;
    background: none;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 10px;
    font-size: 0.85rem;
}

.modal-footer button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
}

footer {
    text-align: center;
    padding: 20px;
    color: #777;
}

/* 배너 스타일 */
.top-banner-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.top-banner {
    display: block;
    border-bottom: 2px solid #e5e7eb;
}

.top-banner img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

/* 테이블 스타일 */
.notice-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.notice-table th {
    background-color: #fcfcfc;
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 700;
    color: #333;
}

.notice-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-table tr:hover td {
    background-color: #f8fbff;
}

/* 갤러리 및 슬라이드 스타일 */
.gallery {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
}

.slides {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 10px 14px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.2s;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dots span {
    height: 10px;
    width: 10px;
    margin: 5px;
    display: inline-block;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.dots span.active {
    background: var(--primary-color);
}

/* 메뉴 토글 */
.menu-toggle {
    position: relative;
    z-index: 9999;
    display: none;
}

.nav {
    display: none;
}

.nav.active {
    display: block;
}

/* 푸터 스타일 */
.site-footer {
    background-color: #f8fbff;
    padding: 50px 20px 20px;
    border-top: 1px solid #e1e9f1;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 8px;
}

.footer-description {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

.custom-footer-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #7d8b94;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.custom-footer-btn:hover {
    background-color: #6a7881;
}

.btn-icon {
    margin-right: 8px;
    font-weight: bold;
}

.footer-link-group {
    display: flex;
    gap: 50px;
}

.link-col h4 {
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
}

.link-col ul {
    list-style: none;
}

.link-col ul li {
    margin-bottom: 8px;
}

.link-col ul li a {
    text-decoration: none;
    color: #888;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.link-col ul li a:hover {
    color: #007bff;
}

.footer-copyright-area {
    border-top: 1px solid #ebf0f5;
    padding-top: 20px;
    text-align: center;
}

.footer-copyright-area p {
    font-size: 0.85rem;
    color: #9eb1c0;
}

html {
    scroll-behavior: smooth;
}

#section4 h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.team-container {
    display: flex;
    gap: 30px;
}

.team {
    width: 50%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(18px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: 0.35s;
}

.team:hover {
    transform: translateY(-8px);
}

.team h3 {
    margin-bottom: 15px;
    color: #3A9BFF;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.team ul {
    list-style: none;
    padding: 0;
}

.team li {
    padding: 6px 0;
    font-size: 15px;
    font-weight: 400;
    color: #555;
}

.member-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.member-grid span {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #000000;
    font-weight: 500;
    font-size: 15px;
    transition: 0.2s;
}

.member-grid span:hover {
    background: #4a90e2;
    color: white;
}

.quick-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: 0.2s;
}

.quick-btn:hover {
    background: #357abd;
    transform: translateY(-3px);
}

.portal-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.portal-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.portal-btn:hover {
    transform: translateY(-8px) scale(1.04);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.portal-btn .icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.portal-btn .text {
    font-size: 15px;
    font-weight: 600;
}

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    aspect-ratio: 1 / 1;
    background-color: #333;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.2s, transform 0.2s;
    z-index: 9999;
}

#scrollTopBtn:hover {
    background-color: #000;
    transform: scale(1.05);
}

.arrow-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

/* 사이드바 스타일 */
.sidebar {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 40px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
}

.button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1) inset;
}

.sidebar button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sidebar button:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.15);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.label {
    margin-top: 6px;
    font-size: 13px;
    color: #000000;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    text-align: center;
    font-weight: 500;
}

/* 로딩 화면 스타일 */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-box {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #4a90e2;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#main-content {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    padding: 20px;
    text-align: center;
}

.loaded #loading-screen {
    opacity: 0;
    visibility: hidden;
}

.loaded #main-content {
    opacity: 1;
}

.loaded {
    overflow: auto;
}

/* 체크마크 아이콘 */
.checkmark {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0;
}

.checkmark path {
    fill: none;
    stroke: #34d399;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
}

.checkmark.show {
    opacity: 1;
}

.checkmark.show path {
    animation: drawCheck 0.9s ease-out forwards;
    filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.25));
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* 모바일 메뉴 오버레이 */
.mobile-menu-overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.mobile-menu-overlay.show {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay button {
    width: 200px;
    padding: 15px 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #333;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mobile-menu-overlay button:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    font-weight: 300;
    color: #333;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: scale(1.1);
}

/* 비디오 컨테이너 */
.video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#myVideo {
    max-width: 100%;
    height: auto;
}

#unmuteBtn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 16px;
    border-radius: 20px;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 14px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: 0.2s;
}

#unmuteBtn:hover {
    background: rgba(0, 0, 0, 0.8);
}

#muteBtn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: 0.2s;
}

#muteBtn:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.05);
}

/* 버튼 공통 스타일 */
button {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    transition: 0.25s;
}

button:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* 애니메이션 */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes auroraMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 40px) rotate(15deg);
    }
}

/* 스크롤바 스타일 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

/* 반응형 */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: block;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .slides {
        width: 100%;
        height: 260px;
        max-width: 100%;
        margin: 0 auto;
    }

    .slide {
        object-fit: cover;
        transform: scale(1.25);
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }

    .top-banner img {
        height: 80px;
    }

    .team-container {
        flex-direction: column;
        gap: 20px;
    }

    .team {
        width: 100%;
    }

    .video-container {
        overflow: hidden;
        border-radius: 15px;
    }

    #myVideo {
        transform: scale(1.35);
        object-fit: cover;
    }

    #muteBtn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .footer-top-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand-info,
    .footer-link-group {
        width: 100%;
        justify-content: center;
    }

    .custom-footer-btn {
        margin: 0 auto;
    }

    .menu-toggle {
        display: block;
    }
}

