
        :root {
            --primary: #2a5d34; /* Forest green */
            --secondary: #5a3921; /* Earth brown */
            --accent: #d4a017; /* Golden yellow */
            --neutral: #f8f5f0; /* Warm off-white */
            --text-dark: #333;
            --text-light: #f8f8f8;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--neutral);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            padding: 1rem;
            box-sizing: border-box;
            /* Ensure no scrollbars */
            overflow: hidden;
        }
        
        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loading-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 2rem;
            animation: fadeInUp 0.5s ease;
                text-align: center;
        }
        
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid var(--accent);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            /* Center the spinner */
            flex-shrink: 0;
            
        }
        
        .loading-text {
            color: white;
            margin-top: 1.5rem;
            font-size: 1.1rem;
            opacity: 0.9;
            animation: fadeInUp 0.5s ease 0.1s both;
            /* Perfect centering */
            text-align: center;
            width: 100%;
            max-width: 90vw;
            box-sizing: border-box;
            padding: 0 1rem;
        }
        
        .loading-logo-image {
            width: 150px;
            height: 150px;
            margin-bottom: 1rem;
            border-radius: 50%;
            object-fit: cover;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--primary);
        }
        
        /* Layout Utilities */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .section {
            padding: 3rem 0;
        }
        
        .section-title {
            font-size: 2.25rem;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            background: var(--accent);
            bottom: -10px;
            left: 0;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--secondary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--secondary);
            box-shadow: var(--shadow-sm);
        }
        
        .btn:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary);
        }
        
        .btn-accent {
            background-color: var(--accent);
            border-color: var(--accent);
        }
        
        .btn-accent:hover {
            background-color: #c28f15;
            border-color: #c28f15;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.25rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(248, 245, 240, 0.98);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            transition: var(--transition);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 0 1.5rem;
            min-height: 60px; /* Ensure minimum height */
        }
        
        .logo {
            font-size: 1.75rem;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: var(--transition);
            flex-shrink: 0; /* Prevent logo from shrinking */
        }
        
        .logo:hover {
            transform: translateY(-2px);
        }
        
        .logo:hover .logo-image {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 4px 12px rgba(42, 93, 52, 0.3);
        }
        
        .logo:hover .logo-text {
            color: var(--secondary);
        }
        
        .logo-image {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border: 2px solid var(--primary);
        }
        
        .logo-text {
            transition: var(--transition);
            animation: fadeInText 0.8s ease;
        }
        
        .logo-text span {
            color: var(--secondary);
            transition: var(--transition);
        }
        
        .logo:hover .logo-text span {
            color: var(--accent);
        }
        
        @keyframes fadeInText {
            from {
                opacity: 0;
                transform: translateX(-10px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        nav {
            flex-shrink: 0; /* Prevent nav from shrinking */
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            margin: 0;
            padding: 0;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--secondary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--primary);
            flex-shrink: 0; /* Prevent menu toggle from shrinking */
            padding: 0.5rem;
        }
        
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
    overflow: hidden; /* Prevent video overflow */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    position: relative; /* Ensure content stays above video */
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero .hashtag {
    color: var(--accent);
    font-weight: 600;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Ensure video covers full height on mobile */
    .hero-background video {
        min-height: 100vh;
    }


}



        /* About Section */
        .about {
            background-color: white;
            position: relative;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            align-items: center;
        }
        
        .about-text {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .about-image {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            height: 350px;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            object-fit: cover;
        }

        /* Carousel Styles */
        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 420px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .carousel-slides {
            position: relative;
            width: 100%;
            height: 320px;
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        
        .carousel-slide.active {
            opacity: 1;
        }
        
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-prev,
        .carousel-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            color: white;
            border: none;
            padding: 12px;
            cursor: pointer;
            font-size: 16px;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 15;
        }
        
        .carousel-prev:hover,
        .carousel-next:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-prev {
            left: 12px;
        }
        
        .carousel-next {
            right: 12px;
        }
        
        .carousel-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 15;
            background: rgba(0, 0, 0, 0.3);
            padding: 8px 12px;
            border-radius: 20px;
            backdrop-filter: blur(5px);
        }
        
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active,
        .dot:hover {
            background: white;
            transform: scale(1.3);
        }
        
        /* Enhanced styles for laptop screens */
        @media (min-width: 769px) and (max-width: 1440px) {
            .carousel-container {
                max-width: 460px;
                border-radius: 25px;
            }
            
            .carousel-slides {
                height: 350px;
            }
            
            .carousel-prev,
            .carousel-next {
                width: 50px;
                height: 50px;
                font-size: 18px;
                padding: 14px;
            }
            
            .carousel-prev {
                left: 15px;
            }
            
            .carousel-next {
                right: 15px;
            }
            
            .carousel-dots {
                bottom: 18px;
                padding: 10px 15px;
            }
            
            .dot {
                width: 12px;
                height: 12px;
            }
        }
        
        /* Large desktop screens */
        @media (min-width: 1441px) {
            .carousel-container {
                max-width: 440px;
                border-radius: 22px;
            }
            
            .carousel-slides {
                height: 330px;
            }
            
            .carousel-prev,
            .carousel-next {
                width: 48px;
                height: 48px;
                font-size: 17px;
            }
            
            .carousel-dots {
                bottom: 16px;
            }
            
            .dot {
                width: 11px;
                height: 11px;
            }
        }
        
        /* Responsive design for smaller screens */
        @media (max-width: 768px) {
            .carousel-container {
                max-width: 95%;
                border-radius: 15px;
            }
            
            .carousel-slides {
                height: 270px;
            }
            
            .carousel-prev,
            .carousel-next {
                width: 38px;
                height: 38px;
                font-size: 14px;
                padding: 10px;
            }
            
            .carousel-prev {
                left: 8px;
            }
            
            .carousel-next {
                right: 8px;
            }
            
            .carousel-dots {
                bottom: 12px;
                padding: 6px 10px;
                gap: 6px;
            }
            
            .dot {
                width: 8px;
                height: 8px;
            }
        }
        

/* Gallery Section */
.gallery {
    background-color: #f8f9fa;
    padding: 3rem 0; /* Reduced from 4rem */
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Reduced min width from 300px */
    gap: 1.5rem; /* Reduced from 2rem */
    margin-top: 1.5rem; /* Reduced from 2rem */
    max-width: 1000px; /* Added container max-width */
    margin-left: auto; /* Center the container */
    margin-right: auto; /* Center the container */
    padding: 0 1rem; /* Add some side padding */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 9/16;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}



        /* YouTube Section */
        .youtube {
            background-color: var(--neutral);
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        /* Adventures Section - Redesigned for Video Showcase */
        .adventures {
            background-color: white;
        }
        
        .video-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .video-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            aspect-ratio: 16/9;
        }
        
        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .video-thumbnail {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .video-card:hover .video-thumbnail img {
            transform: scale(1.05);
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: rgba(212, 160, 23, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            opacity: 0.9;
        }
        
        .video-card:hover .play-button {
            background-color: var(--accent);
            transform: translate(-50%, -50%) scale(1.1);
            opacity: 1;
        }
        
        .play-button i {
            color: white;
            font-size: 1.5rem;
            margin-left: 5px;
        }
        
        .video-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
        }
        
        .video-info h3 {
            color: white;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        
        .video-stats {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .video-stats span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .video-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            width: 90%;
            max-width: 1000px;
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .close-modal:hover {
            color: var(--accent);
        }
        
        .modal-video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }
        
        .modal-video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* FAQ Section */
        .faq {
            background-color: white;
        }
        
        .accordion {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
        }
                
        .accordion-item {
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            width: 100%;
        }

        .accordion-item:hover {
            box-shadow: var(--shadow-md);
        }
        
        .accordion-header {
            padding: 1.2rem;
            background-color: var(--neutral);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .accordion-header:hover {
            background-color: #e8e3d9;
        }
        
        .accordion-header h3 {
            margin: 0;
            font-size: 1.1rem;
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            background-color: white;
        }
        
        .accordion-content-inner {
            padding: 0 1.2rem;
        }
        
        .accordion-item.active .accordion-header {
            background-color: var(--primary);
            color: white;
        }

        .accordion-item.active .accordion-header h3,
        .accordion-item.active .accordion-header i {
            color: white;
        }

        .accordion-header h3,
        .accordion-header i {
            transition: color 0.3s ease;
        }
        
        .accordion-item.active .accordion-content {
            max-height: 500px;
            padding: 1.2rem 0;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-column ul li a:hover {
            color: var(--accent);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        @media (max-width: 768px) {
            .loading-logo-image {
                width: 80px;
                height: 80px;
                margin-bottom: 0.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .loading-logo-image {
                width: 100px;
                height: 100px;
                margin-bottom: 0.6rem;
            }
        }
        
        /* Enhanced Mobile Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                justify-content: space-between;
                gap: 1rem; /* Reduced gap to prevent overlap */
                padding: 0 1rem;
            }
            
            .logo {
                gap: 0.5rem;
                font-size: 1.4rem; /* Slightly smaller on mobile */
            }
            
            .logo-image {
                width: 32px;
                height: 32px;
            }
            
            .menu-toggle {
                display: block;
                margin-left: auto;
                padding: 0.5rem;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--neutral);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: var(--transition);
                padding-top: 3rem; /* Add extra space at the top */
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
                margin-top: 2rem; /* Add more space above the first nav item (Home) */
            }
            
            nav ul li:first-child {
                margin-top: 1.5rem; /* Additional space specifically above Home */
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .loading-logo {
                font-size: 2rem;
                margin-bottom: 1.5rem;
                /* Ensure perfect centering on tablets */
                max-width: 85vw;
                padding: 0 1rem;
            }
            
            .loading-text {
                font-size: 1rem;
                margin-top: 1rem;
                max-width: 85vw;
            }
        }
        
        @media (max-width: 480px) {
            .header-container {
                padding: 0 0.75rem;
                gap: 0.5rem; /* Minimal gap on small screens */
            }
            
            .logo {
                gap: 0.4rem;
                font-size: 1.2rem; /* Even smaller on very small screens */
            }
            
            .logo-image {
                width: 28px;
                height: 28px;
            }
            
            .menu-toggle {
                padding: 0.4rem;
                font-size: 1.3rem;
            }
            
            nav {
                padding-top: 4rem; /* Even more space on smaller screens */
            }
            
            nav ul {
                margin-top: 2.5rem; /* More space above nav items on small screens */
            }
            
            nav ul li:first-child {
                margin-top: 2rem; /* Extra space above Home on small screens */
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 0.7rem 1.5rem;
            }
            
            .video-info {
                padding: 1rem;
            }
            
            .video-info h3 {
                font-size: 1rem;
            }
            
            .video-stats {
                font-size: 0.8rem;
            }
            
            .play-button {
                width: 50px;
                height: 50px;
            }
            
            .loading-logo {
                font-size: 1.8rem;
                margin-bottom: 1rem;
                /* Perfect mobile centering */
                max-width: 80vw;
                padding: 0 1.5rem;
                /* Responsive font size */
                font-size: clamp(1.5rem, 5vw, 1.8rem);
            }
            
            .loading-text {
                font-size: 0.9rem;
                margin-top: 0.8rem;
                max-width: 80vw;
                /* Responsive font size */
                font-size: clamp(0.8rem, 3vw, 0.9rem);
            }
        }
        
        @media (max-width: 320px) {
            .loading-logo {
                font-size: clamp(1.2rem, 6vw, 1.5rem);
                margin-bottom: 0.8rem;
                max-width: 75vw;
                padding: 0 1rem;
            }
            
            .loading-text {
                font-size: clamp(0.7rem, 4vw, 0.8rem);
                margin-top: 0.6rem;
                max-width: 75vw;
            }
        }
        
        /* Landscape orientation - keep centered */
        @media (max-height: 500px) and (orientation: landscape) {
            .loading-screen {
                padding: 0.5rem;
            }
            
            .loading-logo {
                font-size: clamp(1rem, 4vh, 1.5rem);
                margin-bottom: 0.5rem;
                max-width: 70vw;
            }
            
            .loading-text {
                font-size: clamp(0.6rem, 2.5vh, 0.8rem);
                margin-top: 0.5rem;
                max-width: 70vw;
            }
        }
        
        /* Extra safety for very small screens */
        @media (max-width: 280px) {
            .loading-logo {
                font-size: 1.2rem;
                max-width: 70vw;
                word-break: break-word;
            }
            
            .loading-text {
                font-size: 0.7rem;
                max-width: 70vw;
            }
        }
