html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    font-size: 18px;
    background: radial-gradient(circle at top left, #0d0f12, #060708);
    animation: gradientFlow 20s ease-in-out infinite;
    color: #ccfaff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

header {
    position: relative;
    text-align: center;
    padding-bottom: 50px;
    overflow: hidden;
}

.header-banner {
    width: 100%;
    height: 225px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.6);
}

.header-content {
    position: relative;
    z-index: 1;
    padding-top: 100px; /* Adjust based on banner height */
}

.logo {
    width: 413px;
    height: 44px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #00ffcc);
}

h1 {
    font-size: 3.5em;
    color: #00ffcc;
    text-shadow: 0 0 15px #00ffcc, 0 0 30px #00ffcc;
    margin: 0;
    padding: 0;
}

/* Floating Neon Menu */
.floating-neon-menu {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000000ee;
    padding: 15px 0;
    text-align: center;
    border-bottom: 2px solid #00ffcc;
    box-shadow: 0 0 20px #00ffcc;
}

.floating-neon-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.floating-neon-menu li {
    margin: 0 15px;
}

.floating-neon-menu a {
    text-decoration: none;
    color: #ccfaff;
    font-size: 1.1em;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-neon-menu a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.3), transparent);
    transition: all 0.5s ease;
}

.floating-neon-menu a:hover {
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
}

.floating-neon-menu a:hover::before {
    left: 100%;
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-content {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #00ffcc;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    padding: 40px;
    margin-bottom: 60px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.section-content::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #00ffcc, #00ffe1, #ff4a33);
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
}

.section-content h2 {
    color: #00ffe1;
    font-size: 2.5em;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 10px #00ffe1;
}

.section-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.mirror-box {
    background: #000000;
    border: 1px solid #ff4a33;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    font-family: "Courier New", Courier, monospace;
    color: #ff4a33;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 74, 51, 0.7);
}

.mirror-box a {
    color: #ff4a33;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.mirror-box a:hover {
    color: #ffaa88;
}

.section-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border: 2px solid #00ffcc;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.6);
    border-radius: 8px;
}

.warning-text {
    color: #ff4a33;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    background: rgba(255, 74, 51, 0.1);
    border: 1px solid #ff4a33;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 74, 51, 0.5);
}

/* Gallery */
.gallery-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #00ffcc;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.6);
}

.gallery-track {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.gallery-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.gallery-track img {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    scroll-snap-align: start;
    min-width: 400px; /* Ensure images are not too small */
}

.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000000ee;
    border: 1px solid #00ffcc44;
    color: #00ffcc;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    padding: 10px 15px;
    border-radius: 50%;
    transition: background 0.3s ease, color 0.3s ease;
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-prev:hover, .gallery-next:hover {
    background: #00ffcc;
    color: #000000;
}

footer {
    text-align: center;
    padding: 30px;
    background: #000000;
    border-top: 1px solid #00ffcc;
    color: #ccfaff;
    font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2.5em;
    }

    .logo {
        width: 300px;
        height: auto;
    }

    .floating-neon-menu li {
        margin: 5px 10px;
    }

    .section-content {
        padding: 20px;
    }

    .section-content h2 {
        font-size: 2em;
    }

    .gallery-track img {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    .logo {
        width: 250px;
    }

    .floating-neon-menu {
        padding: 10px 0;
    }

    .floating-neon-menu li {
        margin: 5px;
    }

    .floating-neon-menu a {
        font-size: 0.9em;
        padding: 5px 10px;
    }

    .section-content {
        padding: 15px;
    }

    .section-content h2 {
        font-size: 1.8em;
    }

    .gallery-prev, .gallery-next {
        font-size: 1.5rem;
        padding: 5px 10px;
    }
}

