/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #fafaf8;
    --color-text: #1a1a1a;
    --color-text-light: #666;
    --color-border: #e0e0e0;
    --color-accent: #2d2d2d;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s var(--transition-smooth);
}

a:hover {
    opacity: 0.7;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, var(--color-bg) 0%, transparent 100%);
    transition: background-color 0.3s var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--color-border);
}

.logo a {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.nav {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-text);
    transition: width 0.3s var(--transition-smooth);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s var(--transition-smooth);
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: right 0.4s var(--transition-smooth);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-link {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 500;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-carousel-container {
    width: 100%;
    max-width: 600px;
    height: 80vh;
    max-height: 800px;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s var(--transition-smooth), opacity 0.8s var(--transition-smooth);
}

.hero-carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);*/
}

.hero-carousel-slide.active {
    transform: translateX(0);
    opacity: 1;
    z-index: 2;
}

.hero-carousel-slide.exit {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}

.hero-carousel-slide.enter {
    transform: translateX(100%);
    opacity: 0;
    z-index: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    opacity: 0.5;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.hero-scroll:hover {
    opacity: 1;
}

.scroll-indicator {
    width: 1px;
    height: 20px;
    background: var(--color-text-light);
    animation: scrollDown 2s var(--transition-smooth) infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 8rem 4rem;
    min-height: 100vh;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   GALLERY
   ============================================ */

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

.sports-section .gallery {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
    background: #f0f0f0;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-item-landscape {
    aspect-ratio: 4/3;
}

.gallery-item.visible {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth), filter 0.6s var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--transition-smooth), transform 0.4s var(--transition-smooth);
    pointer-events: none;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.gallery-item-number {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* ============================================
   REAL-TIME VIEWPORT TRACKING
   ============================================ */

.live-view-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 100;
    animation: badgeAppear 0.3s ease;
    user-select: none;
    pointer-events: none;
}

@keyframes badgeAppear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.live-eye {
    color: #0d6efd;
    filter: drop-shadow(0 0 4px rgba(13, 110, 253, 0.5));
    animation: eyePulsate 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes eyePulsate {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 4px rgba(13, 110, 253, 0.5));
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px rgba(13, 110, 253, 0.8));
    }
}

.live-count {
    color: #0d6efd;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .live-view-badge {
        top: 10px;
        right: 10px;
    }
    
    .live-eye {
        width: 18px;
        height: 18px;
    }
    
    .live-count {
        font-size: 0.85rem;
    }
}

/* ============================================
   EPHEMERAL MESSAGES
   ============================================ */

.ephemeral-toggle-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    z-index: 1002;
    backdrop-filter: blur(10px);
}

.ephemeral-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(-50%) translateY(-1px);
}

.ephemeral-toggle-btn.active {
    background: rgba(13, 110, 253, 0.8);
    border-color: #0d6efd;
}

.ephemeral-message-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 1000;
    pointer-events: auto;
    cursor: pointer;
}

.marker-dot {
    width: 32px;
    height: 32px;
    background: rgba(13, 110, 253, 0.9);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.ephemeral-message-marker:hover .marker-dot {
    transform: scale(1.2);
    background: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.5);
}

.ephemeral-message-popup {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    max-width: 300px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1001;
}

.ephemeral-message-popup.visible {
    opacity: 1;
}

/* Vertical positioning - Above (default) */
.ephemeral-message-popup.popup-above {
    transform: translate(-50%, calc(-100% - 45px));
}

.ephemeral-message-popup.popup-above::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

/* Vertical positioning - Below */
.ephemeral-message-popup.popup-below {
    transform: translate(-50%, 45px);
}

.ephemeral-message-popup.popup-below::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

/* Horizontal positioning - Center (default) */
.ephemeral-message-popup.popup-align-center {
    /* Uses default -50% translateX from above/below classes */
}

/* Horizontal positioning - Left side (popup goes right) */
.ephemeral-message-popup.popup-align-left.popup-above {
    transform: translate(-10%, calc(-100% - 45px));
}

.ephemeral-message-popup.popup-align-left.popup-below {
    transform: translate(-10%, 45px);
}

.ephemeral-message-popup.popup-align-left::after {
    left: 16px;
    transform: translateX(0);
}

/* Horizontal positioning - Right side (popup goes left) */
.ephemeral-message-popup.popup-align-right.popup-above {
    transform: translate(-90%, calc(-100% - 45px));
}

.ephemeral-message-popup.popup-align-right.popup-below {
    transform: translate(-90%, 45px);
}

.ephemeral-message-popup.popup-align-right::after {
    left: auto;
    right: 16px;
    transform: translateX(0);
}

.popup-message {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .ephemeral-message-popup {
        max-width: 200px;
        font-size: 0.85rem;
    }
    
    .marker-dot {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
}

/* ============================================
   EPHEMERAL MESSAGE MODAL
   ============================================ */

.ephemeral-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.ephemeral-modal.active {
    opacity: 1;
}

.ephemeral-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.ephemeral-modal.active .ephemeral-modal-content {
    transform: scale(1);
}

.ephemeral-modal-content h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 300;
    color: #1a1a1a;
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
}

.ephemeral-modal-content textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    resize: vertical;
    transition: border-color 0.3s ease;
    line-height: 1.5;
}

.ephemeral-modal-content textarea:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.ephemeral-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.char-counter {
    font-size: 0.85rem;
    color: #666;
    font-family: var(--font-primary);
}

.ephemeral-modal-buttons {
    display: flex;
    gap: 0.75rem;
}

.ephemeral-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 0px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.ephemeral-btn-cancel {
    background: #f0f0f0;
    color: #666;
}

.ephemeral-btn-cancel:hover {
    background: #e0e0e0;
}

.ephemeral-btn-submit {
    background: #1a1a1a;
    color: white;
}

.ephemeral-btn-submit:hover {
    background: #0b5ed7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.ephemeral-btn-submit:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

/* Confirmation */
.ephemeral-confirmation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.ephemeral-confirmation svg {
    margin-bottom: 1rem;
    animation: checkmarkScale 0.5s ease;
}

@keyframes checkmarkScale {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.ephemeral-confirmation p {
    font-size: 1.2rem;
    color: #4CAF50;
    font-weight: 500;
    margin: 0;
}

/* Toast Notifications */
.ephemeral-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    color: #333;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    z-index: 10003;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-width: 350px;
}

.ephemeral-toast.active {
    opacity: 1;
    transform: translateY(0);
}

.ephemeral-toast-error {
    background: #dc3545;
    color: white;
}

.ephemeral-toast-info {
    background: #0d6efd;
    color: white;
}

@media (max-width: 768px) {
    .ephemeral-modal-content {
        padding: 1.5rem;
    }
    
    .ephemeral-modal-content h3 {
        font-size: 1.2rem;
    }
    
    .ephemeral-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .ephemeral-toast {
        right: 1rem;
        bottom: 1rem;
        max-width: calc(100% - 2rem);
    }
}

/* ============================================
   COMING SOON
   ============================================ */

.coming-soon {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-content {
    text-align: center;
}

.coming-soon-icon {
    margin-bottom: 2rem;
    color: var(--color-text-light);
    animation: pulse 2s var(--transition-smooth) infinite;
}

.coming-soon-content h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.coming-soon-content p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 10rem;
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    margin-bottom: 3rem;
}

.about-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--color-text-light);
}

.about-contact h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    transition: border-color 0.3s var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-bg);
    background: var(--color-text);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s var(--transition-smooth);
}

.submit-btn:hover {
    background: var(--color-accent);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 2px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--transition-smooth), visibility 0.4s var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    animation: scaleIn 0.4s var(--transition-smooth);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    color: white;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--transition-smooth);
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s var(--transition-smooth);
    z-index: 10001;
}

.lightbox-nav:hover {
    opacity: 0.7;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 3rem 4rem;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .header {
        padding: 1.5rem 2rem;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .section {
        padding: 6rem 2rem;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1.5rem 1.5rem;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .hero-carousel-container {
        max-width: 90vw;
        height: 70vh;
    }

    .hero-scroll {
        bottom: 1.5rem;
        font-size: 0.6rem;
    }

    .scroll-indicator {
        height: 15px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .sports-section .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .about-content {
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

.lightbox-close {
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .sports-section .gallery {
        grid-template-columns: 1fr;
    }

    .hero-carousel-container {
        max-width: 95vw;
        height: 60vh;
    }

    .hero-scroll {
        bottom: 1rem;
        font-size: 0.55rem;
    }

    .scroll-indicator {
        height: 12px;
    }

    .section-title {
        font-size: 2rem;
    }
}
