/* Importurile pentru fonturi */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Setări generale */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #023e8a, #5e60ce, #d3d3d3);
    color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    box-sizing: border-box;
    width: 100%;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Titluri */
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Butoane și interacțiuni */
button {
    font-family: 'Bungee', cursive;
    background-color: #e63946;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

button:hover {
    transform: scale(1.1);
    background-color: #ff4d6d;
}

/* Secțiuni */
section {
    padding: 60px 20px;
    text-align: center;
}

/* Linkuri */
a {
    text-decoration: none;
    color: #d3d3d3;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #ffcc00;
}

/* ---------------- NAVBAR ---------------- */
.moonlight-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(3, 7, 30, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    flex-wrap: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

/* Logo-ul navbar */
.moonlight-navbar-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-right: 60px;
}

.moonlight-navbar-logo img {
    height: 45px;
    max-width: 120px;
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.8));
}

/* Container pentru butoane */
.moonlight-navbar-container {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.moonlight-navbar-container::-webkit-scrollbar {
    display: none;
}

/* Gradient fade-out indicator */
.moonlight-navbar-container::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(3, 7, 30, 0.9));
    pointer-events: none;
    z-index: 5;
    display: none;
}

/* Scroll Indicator Arrow */
.moonlight-navbar-container::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, rgba(3, 7, 30, 0.9));
    color: #0ef;
    width: 30px;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    pointer-events: none;
    z-index: 10;
    animation: scrollPulse 2s infinite ease-in-out;
    border-radius: 0 6px 6px 0;
}

/* Scroll Arrow Animation */
@keyframes scrollPulse {
    0%, 100% { 
        transform: translateY(-50%) translateX(0px);
        opacity: 0.8;
        text-shadow: 0px 0px 5px #0ef;
    }
    50% { 
        transform: translateY(-50%) translateX(3px);
        opacity: 1;
        text-shadow: 0px 0px 10px #0ef;
    }
}

/* Butoane Navbar */
.moonlight-navbar-link {
    position: relative;
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 10px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 6px;
    transition: color 0.3s ease-in-out, transform 0.2s;
    min-width: 140px;
    flex-shrink: 0;
}

/* Hover effect */
.moonlight-navbar-link:hover {
    color: #0ef;
    text-shadow: 0px 0px 10px #0ef;
    transform: scale(1.05);
}

/* Efect de orbitare a planetelor */
.orbit-planet {
    position: absolute;
    top: 50%;
    left: -12px;
    width: 6px;
    height: 6px;
    background: #0ef;
    border-radius: 50%;
    box-shadow: 0px 0px 8px #0ef;
    animation: orbit 3s linear infinite;
}

/* Animație de orbitare */
@keyframes orbit {
    0% { transform: translateX(0) translateY(-8px) rotate(0deg); }
    25% { transform: translateX(10px) translateY(0) rotate(90deg); }
    50% { transform: translateX(0) translateY(8px) rotate(180deg); }
    75% { transform: translateX(-10px) translateY(0) rotate(270deg); }
    100% { transform: translateX(0) translateY(-8px) rotate(360deg); }
}

/* ---------------- WELCOME HERO SECTION ---------------- */
.moonlight-fish-crate-welcome-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    background: url('background-image.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
}

/* Dark Overlay for readability */
.moonlight-fish-crate-welcome-hero-overlay {
    background: rgba(0, 0, 20, 0.7);
    padding: 40px;
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    animation: fadeIn 1.5s ease-in-out;
}

/* Hero Title */
.moonlight-fish-crate-welcome-hero h1 {
    font-size: 3rem;
    font-family: 'Orbitron', sans-serif;
    color: #f4f4f4;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0px 0px 15px rgba(0, 255, 255, 0.8);
}

/* Highlighted Site Name */
.moonlight-fish-crate-welcome-hero h1 span {
    color: #00eaff;
    font-weight: bold;
}

/* Hero Summary */
.moonlight-fish-crate-welcome-hero-summary {
    font-size: 1.3rem;
    font-weight: 500;
    color: #dcdcdc;
    margin: 20px 0;
    line-height: 1.6;
    animation: fadeInUp 1.8s ease-in-out;
}

/* Call to Action Button */
.moonlight-fish-crate-welcome-hero-button {
    font-size: 1.2rem;
    padding: 12px 25px;
    background: linear-gradient(45deg, #00eaff, #0077ff);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.6);
}

.moonlight-fish-crate-welcome-hero-button:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #0077ff, #00eaff);
}

/* ---------------- ANIMATIONS ---------------- */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------------- ABOUT FEATURES SECTION ---------------- */
.moonlight-fish-crate-about-features {
    padding: 80px 20px;
    background: #09152b;
    color: white;
    text-align: center;
}

.moonlight-fish-crate-about-features h2 {
    font-size: 2.8rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    color: #0ef;
    text-shadow: 0px 0px 10px rgba(14, 239, 255, 0.8);
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

.moonlight-fish-crate-about-summary {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto 40px;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

/* Features Container */
.moonlight-fish-crate-features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Feature Cards */
.feature-card {
    background: rgba(14, 14, 44, 0.9);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 238, 255, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards;
}

/* Hover Effect */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 25px rgba(0, 238, 255, 0.5);
}

/* Feature Icons */
.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

/* Feature Titles */
.feature-card h3 {
    font-size: 1.6rem;
    font-family: 'Orbitron', sans-serif;
    color: #0ef;
    margin-bottom: 10px;
}

/* Feature Description */
.feature-card p {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------- FAQ SECTION ---------------- */
.moonlight-fish-crate-faq {
    padding: 80px 20px;
    background: #071021;
    color: white;
    text-align: center;
}

.moonlight-fish-crate-faq h2 {
    font-size: 2.8rem;
    font-family: 'Orbitron', sans-serif;
    color: #0ef;
    text-transform: uppercase;
    text-shadow: 0px 0px 10px rgba(14, 239, 255, 0.8);
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

.moonlight-fish-crate-faq-intro {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

/* FAQ Container */
.moonlight-fish-crate-faq-container {
    max-width: 900px;
    margin: auto;
    text-align: left;
}

/* Individual FAQ Item */
.faq-item {
    background: rgba(14, 14, 44, 0.9);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 15px;
    box-shadow: 0px 5px 15px rgba(0, 238, 255, 0.3);
    transition: transform 0.3s ease-in-out;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards;
}

/* Hover Effect */
.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0, 238, 255, 0.5);
}

/* FAQ Questions */
.faq-question {
    font-size: 1.4rem;
    font-weight: bold;
    color: #0ef;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

/* FAQ Answers */
.faq-answer {
    font-size: 1.1rem;
    color: #ffffff;
    display: none;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Toggle Icon */
.toggle-icon {
    font-size: 1.5rem;
    color: #0ef;
    transition: transform 0.3s ease-in-out;
}

/* ---------------- ABOUT EACH GAME SECTION ---------------- */
.moonlight-fish-crate-about-games {
    padding: 80px 20px;
    background: #071021;
    color: white;
    text-align: center;
}

.moonlight-fish-crate-about-games h2 {
    font-size: 2.8rem;
    font-family: 'Orbitron', sans-serif;
    color: #0ef;
    text-transform: uppercase;
    text-shadow: 0px 0px 10px rgba(14, 239, 255, 0.8);
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

.moonlight-fish-crate-about-games-intro {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

/* Game List Layout */
.moonlight-fish-crate-game-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

/* Individual Game Card */
.game-card {
    display: flex;
    align-items: center;
    background: rgba(14, 14, 44, 0.9);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 5px 15px rgba(0, 238, 255, 0.3);
    transition: transform 0.3s ease-in-out;
    opacity: 0;
    animation: fadeInUp 1.5s ease-in-out forwards;
}

/* Image Styling */
.game-card img {
    width: 400px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 20px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0;
}

/* Hover Effect */
.game-card:hover {
    transform: scale(1.03);
    box-shadow: 0px 10px 25px rgba(0, 238, 255, 0.5);
}

/* Hover Animation for Images */
.game-card:hover img {
    transform: scale(1.1);
}

/* Game Information */
.game-info {
    flex: 1;
}

.game-info h3 {
    font-size: 1.8rem;
    font-family: 'Orbitron', sans-serif;
    color: #0ef;
    margin-bottom: 10px;
}

.game-info p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
}

/* ---------------- PLAY NOW SECTION ---------------- */
.moonlight-fish-crate-play {
    padding: 80px 20px;
    background: #050d1b;
    color: white;
    text-align: center;
}

.moonlight-fish-crate-play h2 {
    font-size: 2.8rem;
    font-family: 'Orbitron', sans-serif;
    color: #0ef;
    text-transform: uppercase;
    text-shadow: 0px 0px 10px rgba(14, 239, 255, 0.8);
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

.moonlight-fish-crate-play-intro {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

/* Play Now Game List */
.moonlight-fish-crate-play-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Game Card */
.play-game-card {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effect */
.play-game-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 30px rgba(0, 238, 255, 0.5);
}

/* Game Overlay */
.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show Overlay on Hover */
.play-game-card:hover .game-overlay {
    opacity: 1;
}

/* Game Title */
.game-overlay h3 {
    font-size: 1.8rem;
    font-family: 'Orbitron', sans-serif;
    color: #0ef;
    margin-bottom: 15px;
}

/* Play Button */
.play-button {
    background: #0ef;
    color: #071021;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.play-button:hover {
    background: #09c;
    transform: scale(1.1);
}

/* ---------------- STAR OVERLAY (Peste Toate Secțiunile) ---------------- */
.moonlight-fish-crate-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 3s infinite ease-in-out;
}

/* Animație pentru licărire */
@keyframes twinkle {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.8);
    }
}

/* ---------------- FOOTER ---------------- */
.moonlight-fish-crate-footer {
    background: linear-gradient(180deg, #020d1f, #051735);
    color: white;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

/* 🔞 Icon Animat */
.moonlight-fish-crate-footer-disclaimer-icon {
    font-size: 2.2rem;
    animation: pulseEffect 1.5s infinite alternate ease-in-out;
}

/* 🌟 Efect de pulsare */
@keyframes pulseEffect {
    0% {
        transform: scale(1);
        text-shadow: 0px 0px 5px #ff4444;
    }
    100% {
        transform: scale(1.4);
        text-shadow: 0px 0px 15px #ff2222;
    }
}

/* 🔞 Disclaimer 18+ */
.moonlight-fish-crate-footer-disclaimer {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff4444;
    animation: glowEffect 1.5s infinite alternate;
}

/* Animație continuă pentru efect vizual puternic */
@keyframes glowEffect {
    0% { text-shadow: 0px 0px 10px #ff4444; }
    100% { text-shadow: 0px 0px 20px #ff2222; }
}

/* 📜 Business Summary */
.moonlight-fish-crate-footer-summary p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.6;
    color: #dddddd;
    transition: transform 0.3s ease-in-out;
}

/* Hover pe Summary */
.moonlight-fish-crate-footer-summary p:hover {
    transform: scale(1.05);
    color: #0ef;
}

/* 🔗 Footer Links */
.moonlight-fish-crate-footer-links {
    margin-top: 20px;
}

.moonlight-fish-crate-footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease-in-out, transform 0.3s;
}

/* Hover pe linkuri */
.moonlight-fish-crate-footer-links a:hover {
    color: #0ef;
    text-shadow: 0px 0px 10px #0ef;
    transform: scale(1.1);
}

/* 🌌 Footer Images */
.moonlight-fish-crate-footer-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.moonlight-fish-crate-footer-images img {
    width: 120px;
    height: 100px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease-in-out;
}

/* Hover pe imagini */
.moonlight-fish-crate-footer-images img:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
}

/* 🏆 Developed By */
.moonlight-fish-crate-footer-text {
    font-size: 1rem;
    margin-top: 30px;
    font-weight: bold;
    color: #0ef;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.moonlight-fish-crate-divider {
    width: 80%;
    height: 5px;
    background: linear-gradient(90deg, #0ef, #ff4444, #0ef);
    border-radius: 10px;
    margin: 40px auto;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
    position: relative;
}

/* 🔲 AGE VERIFICATION POPUP */
.moonlight-age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.moonlight-age-popup-content {
    background: linear-gradient(135deg, #040b1a, #0b162c);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: fadeIn 0.5s ease-in-out;
}

.moonlight-age-popup h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ff4444;
}

.moonlight-age-popup p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.moonlight-age-popup label {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    justify-content: center;
    margin-bottom: 15px;
}

.moonlight-age-popup input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.moonlight-age-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.moonlight-age-popup-buttons button {
    padding: 10px 20px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s, box-shadow 0.2s;
}

#age-confirm-btn {
    background: #0ef;
    color: black;
    font-weight: bold;
}

#age-confirm-btn:disabled {
    background: gray;
    cursor: not-allowed;
}

#age-exit-btn {
    background: #ff4444;
    color: white;
    font-weight: bold;
}

.moonlight-age-popup-buttons button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* 🔄 FADE-IN ANIMATION */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* 🌌 ABOUT PAGE SECTION */
.moonlight-about-page {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #050b22, #0e1a38);
    color: white;
    overflow: hidden;
}

/* Title */
.moonlight-about-page h2 {
    font-size: 2.8rem;
    font-family: 'Orbitron', sans-serif;
    color: #0ef;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInDown 1s ease-in-out forwards;
}

/* Summary */
.moonlight-about-summary {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 600;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

/* About Section Layout */
.moonlight-about-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Boxes */
.about-box {
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 238, 255, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
}

/* Hover Effects */
.about-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 20px rgba(0, 238, 255, 0.7);
}

/* About Box Titles */
.about-box h3 {
    font-size: 1.6rem;
    font-family: 'Luckiest Guy', cursive;
    color: #0ef;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

/* Title Hover Effect */
.about-box:hover h3 {
    color: #ff44ff;
}

/* About Box Descriptions */
.about-box p {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    transition: color 0.3s ease-in-out;
}

/* Paragraph Hover Effect */
.about-box:hover p {
    color: #ffffffb3;
}

/* 🌌 CONTACT FORM SECTION */
.moonlight-contact-form {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #050b22, #0e1a38);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title */
.moonlight-contact-form h2 {
    font-size: 2.5rem;
    font-family: 'Orbitron', sans-serif;
    color: #0ef;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Subtitle */
.moonlight-contact-form p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.8;
}

/* Form Styling */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 238, 255, 0.3);
    width: 100%;
    max-width: 500px;
    text-align: left;
}

/* Input Fields */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 1rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #0ef;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: box-shadow 0.3s ease-in-out;
}

/* Focus Effects */
.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0px 0px 10px rgba(0, 238, 255, 0.7);
}

/* Textarea */
.form-group textarea {
    height: 120px;
    resize: none;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 12px;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
    background: #0ef;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* Button Hover */
.submit-button:hover {
    background: #ff44ff;
    transform: scale(1.05);
}

/* ---------------- RSG SECTION ---------------- */
.moonlight-fish-crate-rsg {
    background: #0d1b2a;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.rsg-title {
    font-size: 2.5rem;
    color: #0ef;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeInDown 1s ease-in-out;
}

.rsg-update {
    font-size: 1.2rem;
    color: #f4a261;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.rsg-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    text-align: left;
}

/* Headings */
.rsg-heading {
    font-size: 1.6rem;
    font-family: 'Bangers', cursive;
    color: #f4a261;
    margin-top: 30px;
    transition: transform 0.3s ease-in-out;
}

.rsg-heading:hover {
    transform: scale(1.05);
    color: #ff6f61;
}

/* Lists */
.rsg-list {
    list-style-type: none;
    padding: 0;
    text-align: left;
    margin: 20px auto;
    max-width: 600px;
}

.rsg-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: background 0.3s ease-in-out;
}

.rsg-list li:hover {
    background: rgba(0, 238, 255, 0.3);
    transform: scale(1.03);
}

/* Contact Section */
.rsg-contact {
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0px 0px 5px rgba(0, 238, 255, 0.6);
}

.rsg-contact a {
    color: #0ef;
    text-decoration: none;
    font-weight: bold;
}

.rsg-contact a:hover {
    text-decoration: underline;
    color: #ff6f61;
}

/* ---------------- PRIVACY POLICY SECTION ---------------- */
.moonlight-fish-crate-privacy {
    background: #0b132b;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.privacy-title {
    font-size: 2.5rem;
    color: #f4a261;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeInDown 1s ease-in-out;
}

.privacy-update {
    font-size: 1.2rem;
    color: #0ef;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    text-align: left;
}

/* Headings */
.privacy-heading {
    font-size: 1.6rem;
    font-family: 'Bangers', cursive;
    color: #0ef;
    margin-top: 30px;
    transition: transform 0.3s ease-in-out;
}

.privacy-heading:hover {
    transform: scale(1.05);
    color: #ff6f61;
}

/* Lists */
.privacy-list {
    list-style-type: none;
    padding: 0;
    text-align: left;
    margin: 20px auto;
    max-width: 600px;
}

.privacy-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: background 0.3s ease-in-out;
}

.privacy-list li:hover {
    background: rgba(0, 238, 255, 0.3);
    transform: scale(1.03);
}

/* Contact Section */
.privacy-contact {
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0px 0px 5px rgba(0, 238, 255, 0.6);
}

.privacy-contact a {
    color: #0ef;
    text-decoration: none;
    font-weight: bold;
}

.privacy-contact a:hover {
    text-decoration: underline;
    color: #ff6f61;
}

/* ---------------- TERMS & CONDITIONS SECTION ---------------- */
.moonlight-fish-crate-terms {
    background: #0b132b;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.terms-title {
    font-size: 2.5rem;
    color: #f4a261;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeInDown 1s ease-in-out;
}

.terms-update {
    font-size: 1.2rem;
    color: #0ef;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    text-align: left;
}

/* Headings */
.terms-heading {
    font-size: 1.6rem;
    font-family: 'Bangers', cursive;
    color: #0ef;
    margin-top: 30px;
    transition: transform 0.3s ease-in-out;
}

.terms-heading:hover {
    transform: scale(1.05);
    color: #ff6f61;
}

/* Lists */
.terms-list {
    list-style-type: none;
    padding: 0;
    text-align: left;
    margin: 20px auto;
    max-width: 600px;
}

.terms-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: background 0.3s ease-in-out;
}

.terms-list li:hover {
    background: rgba(0, 238, 255, 0.3);
    transform: scale(1.03);
}

/* Contact Section */
.terms-contact {
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0px 0px 5px rgba(0, 238, 255, 0.6);
}

.terms-contact a {
    color: #0ef;
    text-decoration: none;
    font-weight: bold;
}

.terms-contact a:hover {
    text-decoration: underline;
    color: #ff6f61;
}

/* ---------------- OPT-OUT SECTION ---------------- */
.moonlight-fish-crate-optout {
    background: #0b132b;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.optout-title {
    font-size: 2.5rem;
    color: #ff6f61;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeInDown 1s ease-in-out;
}

.optout-update {
    font-size: 1.2rem;
    color: #0ef;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.optout-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    text-align: left;
}

/* Headings */
.optout-heading {
    font-size: 1.6rem;
    font-family: 'Bangers', cursive;
    color: #0ef;
    margin-top: 30px;
    transition: transform 0.3s ease-in-out;
}

.optout-heading:hover {
    transform: scale(1.05);
    color: #ff6f61;
}

/* Contact Section */
.optout-contact {
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0px 0px 5px rgba(0, 238, 255, 0.6);
}

.optout-contact a {
    color: #0ef;
    text-decoration: none;
    font-weight: bold;
}

.optout-contact a:hover {
    text-decoration: underline;
    color: #ff6f61;
}

/* RESPONSIVE DESIGN - COMPREHENSIVE BREAKPOINTS */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .moonlight-navbar-container {
        max-width: 1400px;
    }
    
    .moonlight-fish-crate-features-container,
    .moonlight-about-sections,
    .moonlight-fish-crate-play-list {
        max-width: 1400px;
    }
    
    .moonlight-fish-crate-welcome-hero h1 {
        font-size: 3.5rem;
    }
}

/* Standard Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .moonlight-navbar {
        padding: 10px 20px;
    }
    
    .moonlight-navbar-container {
        max-width: 1000px;
    }

    .moonlight-navbar-link {
        font-size: 0.9rem;
        padding: 6px 8px;
        min-width: 120px;
    }
}

/* Laptop (1024px - 1199px) */
@media (max-width: 1199px) {
    .moonlight-navbar {
        padding: 8px 15px;
    }

    .moonlight-navbar-logo {
        margin-right: 40px;
    }

    .moonlight-navbar-logo img {
        height: 40px;
        max-width: 100px;
    }

    .moonlight-navbar-link {
        font-size: 0.85rem;
        padding: 5px 7px;
        min-width: 100px;
    }

    .moonlight-fish-crate-welcome-hero h1 {
        font-size: 2.8rem;
    }
    
    .moonlight-fish-crate-welcome-hero-summary {
        font-size: 1.2rem;
    }
    
    .moonlight-fish-crate-welcome-hero-button {
        font-size: 1.1rem;
        padding: 10px 20px;
    }

    .moonlight-fish-crate-about-features h2,
    .moonlight-fish-crate-faq h2,
    .moonlight-fish-crate-about-games h2,
    .moonlight-fish-crate-play h2,
    .moonlight-about-page h2,
    .moonlight-contact-form h2 {
        font-size: 2.4rem;
    }

    .moonlight-fish-crate-features-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .game-card img {
        width: 350px;
        height: 180px;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .moonlight-navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 8px;
        height: auto;
    }

    .moonlight-navbar-logo {
        margin-right: 10px;
        margin-bottom: 0;
    }

    .moonlight-navbar-container {
        width: auto;
        flex: 1;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 10px;
    }

    /* Show scroll indicators on tablet */
    .moonlight-navbar-container::before {
        display: block;
        width: 25px;
    }
    
    .moonlight-navbar-container::after {
        display: flex;
        right: 0;
        width: 30px;
        font-size: 16px;
    }

    .moonlight-navbar-link {
        font-size: 0.8rem;
        padding: 8px 12px;
        min-width: 90px;
        flex-shrink: 0;
    }

    .moonlight-fish-crate-welcome-hero {
        height: 70vh;
        padding: 30px 15px;
        margin-top: 80px; /* Account for navbar height */
    }

    .moonlight-fish-crate-welcome-hero-overlay {
        padding: 30px;
    }

    .moonlight-fish-crate-welcome-hero h1 {
        font-size: 2.4rem;
    }
    
    .moonlight-fish-crate-welcome-hero-summary {
        font-size: 1.1rem;
    }
    
    .moonlight-fish-crate-welcome-hero-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .moonlight-fish-crate-about-features,
    .moonlight-fish-crate-faq,
    .moonlight-fish-crate-about-games,
    .moonlight-fish-crate-play,
    .moonlight-about-page,
    .moonlight-contact-form {
        padding: 60px 15px;
    }

    .moonlight-fish-crate-about-features h2,
    .moonlight-fish-crate-faq h2,
    .moonlight-fish-crate-about-games h2,
    .moonlight-fish-crate-play h2,
    .moonlight-about-page h2,
    .moonlight-contact-form h2 {
        font-size: 2.2rem;
    }

    .moonlight-fish-crate-features-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .moonlight-fish-crate-faq-container {
        width: 95%;
    }

    .game-card {
        flex-direction: column;
        text-align: center;
    }

    .game-card img {
        width: 100%;
        max-width: 400px;
        height: 200px;
        margin: 0 0 15px 0;
    }

    .moonlight-fish-crate-play-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .moonlight-about-sections {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .moonlight-fish-crate-footer-images {
        width: 90%;
        justify-content: center;
    }

    .moonlight-fish-crate-footer-images img {
        width: 100px;
        height: 85px;
    }
}

/* Mobile (480px - 767px) */
@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .moonlight-navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 8px;
        height: 60px;
    }

    .moonlight-navbar-logo {
        margin-right: 10px;
        margin-bottom: 0;
    }

    .moonlight-navbar-logo img {
        height: 35px;
        max-width: 90px;
    }

    .moonlight-navbar-container {
        flex: 1;
        gap: 8px;
        padding: 0 5px;
        justify-content: flex-start;
    }

    /* Show scroll indicators on mobile */
    .moonlight-navbar-container::before {
        display: block;
        width: 20px;
    }
    
    .moonlight-navbar-container::after {
        display: flex;
        right: 0;
        width: 25px;
        font-size: 14px;
    }

    .moonlight-navbar-link {
        font-size: 0.75rem;
        padding: 6px 8px;
        min-width: 80px;
        white-space: nowrap;
    }

    .moonlight-fish-crate-welcome-hero {
        height: 60vh;
        padding: 20px 10px;
        margin-top: 60px; /* Account for fixed navbar */
    }

    .moonlight-fish-crate-welcome-hero-overlay {
        padding: 25px;
    }

    .moonlight-fish-crate-welcome-hero h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .moonlight-fish-crate-welcome-hero-summary {
        font-size: 1rem;
        margin: 15px 0;
    }
    
    .moonlight-fish-crate-welcome-hero-button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .moonlight-fish-crate-about-features,
    .moonlight-fish-crate-faq,
    .moonlight-fish-crate-about-games,
    .moonlight-fish-crate-play,
    .moonlight-about-page,
    .moonlight-contact-form {
        padding: 50px 10px;
    }

    .moonlight-fish-crate-about-features h2,
    .moonlight-fish-crate-faq h2,
    .moonlight-fish-crate-about-games h2,
    .moonlight-fish-crate-play h2,
    .moonlight-about-page h2,
    .moonlight-contact-form h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .moonlight-fish-crate-about-summary,
    .moonlight-fish-crate-faq-intro,
    .moonlight-fish-crate-about-games-intro,
    .moonlight-fish-crate-play-intro,
    .moonlight-about-summary {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .moonlight-fish-crate-features-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 1.4rem;
    }

    .faq-question {
        font-size: 1.2rem;
        padding: 8px;
    }

    .faq-answer {
        font-size: 1rem;
        padding: 8px;
    }

    .game-card {
        padding: 15px;
    }

    .game-card img {
        height: 180px;
    }

    .game-info h3 {
        font-size: 1.5rem;
    }

    .game-info p {
        font-size: 1rem;
    }

    .moonlight-fish-crate-play-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .play-game-card {
        height: 300px;
    }

    .game-overlay h3 {
        font-size: 1.5rem;
    }

    .play-button {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .moonlight-about-sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-box h3 {
        font-size: 1.4rem;
    }

    .contact-form {
        padding: 15px;
    }

    .submit-button {
        font-size: 1rem;
        padding: 10px;
    }

    .moonlight-fish-crate-footer {
        padding: 30px 10px;
    }

    .moonlight-fish-crate-footer-disclaimer {
        font-size: 1.2rem;
    }

    .moonlight-fish-crate-footer-summary p {
        font-size: 1rem;
    }

    .moonlight-fish-crate-footer-links a {
        font-size: 1rem;
        margin: 0 10px;
        display: inline-block;
        margin-bottom: 10px;
    }

    .moonlight-fish-crate-footer-images {
        flex-direction: column;
        gap: 10px;
    }

    .moonlight-fish-crate-footer-images img {
        width: 120px;
        height: 100px;
    }

    .moonlight-age-popup-content {
        padding: 15px;
        max-width: 350px;
    }

    .moonlight-age-popup h2 {
        font-size: 1.5rem;
    }

    .moonlight-age-popup p {
        font-size: 1rem;
    }

    .moonlight-age-popup-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .moonlight-age-popup-buttons button {
        width: 100%;
        padding: 12px;
    }

    .rsg-content,
    .privacy-content,
    .terms-content,
    .optout-content {
        font-size: 1rem;
        padding: 0 10px;
    }

    .rsg-title,
    .privacy-title,
    .terms-title,
    .optout-title {
        font-size: 2rem;
    }

    .rsg-heading,
    .privacy-heading,
    .terms-heading,
    .optout-heading {
        font-size: 1.3rem;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .moonlight-navbar {
        padding: 8px 5px;
        height: 55px;
    }

    .moonlight-navbar-logo img {
        height: 30px;
        max-width: 75px;
    }

    .moonlight-navbar-container {
        gap: 6px;
        padding: 0 3px;
    }

    /* Show scroll indicators on small mobile */
    .moonlight-navbar-container::before {
        display: block;
        width: 15px;
    }

    /* Smaller scroll arrow for very small screens */
    .moonlight-navbar-container::after {
        display: flex;
        width: 20px;
        font-size: 12px;
        right: 0;
    }

    .moonlight-navbar-link {
        font-size: 0.7rem;
        padding: 5px 6px;
        min-width: 70px;
    }

    .moonlight-fish-crate-welcome-hero h1 {
        font-size: 1.8rem;
    }
    
    .moonlight-fish-crate-welcome-hero-summary {
        font-size: 0.9rem;
    }
    
    .moonlight-fish-crate-welcome-hero-button {
        font-size: 0.8rem;
        padding: 7px 14px;
    }

    .moonlight-fish-crate-welcome-hero {
        margin-top: 55px; /* Account for smaller navbar */
    }

    .moonlight-fish-crate-about-features h2,
    .moonlight-fish-crate-faq h2,
    .moonlight-fish-crate-about-games h2,
    .moonlight-fish-crate-play h2,
    .moonlight-about-page h2,
    .moonlight-contact-form h2 {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .game-card img {
        height: 150px;
    }

    .game-info h3 {
        font-size: 1.3rem;
    }

    .game-info p {
        font-size: 0.9rem;
    }

    .play-game-card {
        height: 250px;
    }

    .game-overlay h3 {
        font-size: 1.3rem;
    }

    .about-box {
        padding: 15px;
    }

    .about-box h3 {
        font-size: 1.2rem;
    }

    .about-box p {
        font-size: 0.9rem;
    }

    .moonlight-fish-crate-footer-disclaimer {
        font-size: 1rem;
    }

    .moonlight-fish-crate-footer-disclaimer-icon {
        font-size: 1.8rem;
    }

    .moonlight-age-popup h2 {
        font-size: 1.3rem;
    }

    .moonlight-age-popup p {
        font-size: 0.9rem;
    }

    .rsg-title,
    .privacy-title,
    .terms-title,
    .optout-title {
        font-size: 1.8rem;
    }

    .rsg-heading,
    .privacy-heading,
    .terms-heading,
    .optout-heading {
        font-size: 1.2rem;
    }

    .rsg-content,
    .privacy-content,
    .terms-content,
    .optout-content {
        font-size: 0.9rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .moonlight-navbar-logo img,
    .game-card img,
    .moonlight-fish-crate-footer-images img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .moonlight-navbar,
    .moonlight-fish-crate-stars,
    .moonlight-age-popup {
        display: none !important;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .moonlight-fish-crate-welcome-hero,
    .moonlight-fish-crate-about-features,
    .moonlight-fish-crate-faq,
    .moonlight-fish-crate-about-games,
    .moonlight-fish-crate-play,
    .moonlight-about-page,
    .moonlight-contact-form,
    .moonlight-fish-crate-footer {
        background: white !important;
        color: black !important;
        padding: 20px 0 !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Better Accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus,
.moonlight-navbar-link:focus {
    outline: 2px solid #0ef;
    outline-offset: 2px;
}

/* Landscape Orientation on Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .moonlight-fish-crate-welcome-hero {
        height: 80vh;
    }
    
    .moonlight-navbar {
        flex-direction: row;
        padding: 5px;
    }
    
    .moonlight-navbar-logo {
        margin-bottom: 0;
        margin-right: 20px;
    }
    
    .moonlight-navbar-container {
        justify-content: flex-start;
    }
}

/* Very Wide Screens */
@media (min-width: 1920px) {
    .moonlight-fish-crate-features-container,
    .moonlight-about-sections,
    .moonlight-fish-crate-play-list {
        max-width: 1600px;
    }
    
    .moonlight-fish-crate-welcome-hero h1 {
        font-size: 4rem;
    }
    
    .moonlight-fish-crate-welcome-hero-summary {
        font-size: 1.5rem;
    }
}