/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Main Content Styles */
main {
    padding: 60px 0;
}

/* Hero Section - Image Display */
.hero-section {
    margin-bottom: 80px;
    text-align: center;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.neon-tetra-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .neon-tetra-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    transform: translateY(0);
}

.overlay-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    text-align: center;
}

/* Info Section */
.info-section {
    margin-bottom: 80px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h3 {
    font-size: 1.5rem;
    color: #38bdf8;
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Facts Section */
.facts-section {
    margin-bottom: 80px;
}

.facts-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.facts-list li {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding-left: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.facts-list li::before {
    content: "✨";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.facts-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.facts-list li {
    color: #cbd5e1;
    font-weight: 300;
}

/* Footer Styles */
footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 80px;
}

footer p {
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0;
    font-weight: 300;
}

.credit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-section {
        margin-bottom: 50px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .facts-list {
        grid-template-columns: 1fr;
    }

    .image-container {
        padding: 20px;
    }

    .info-card {
        padding: 20px;
    }

    .facts-list li {
        padding: 20px;
        padding-left: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    header {
        padding: 40px 0 30px;
    }

    main {
        padding: 40px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.neon-tetra-image {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Text Animations */
h1 {
    opacity: 0;
    animation: slideDown 0.8s ease 0.2s forwards;
}

.subtitle {
    opacity: 0;
    animation: slideDown 0.8s ease 0.4s forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- New Visual Enhancements --- */

/* 1. Neon Glow Text */
h1 {
    animation: slideDown 0.8s ease 0.2s forwards, neonPulse 3s infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow:
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 20px #00e0ff,
            0 0 30px #00e0ff,
            0 0 40px #00e0ff;
    }

    to {
        text-shadow:
            0 0 10px #fff,
            0 0 20px #fff,
            0 0 30px #00e0ff,
            0 0 40px #0073e6,
            0 0 70px #0073e6,
            0 0 80px #0073e6;
    }
}

h2 {
    text-shadow: 0 0 10px rgba(0, 224, 255, 0.5);
}

/* 2. Animated Bubbles Background */
.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -50px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: rise linear infinite;
    backdrop-filter: blur(2px);
}

@keyframes rise {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-120vh) translateX(30px);
        opacity: 0;
    }
}

/* 3. Fish Cursor */
.cursor-fish {
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #ff3333, #0011ff);
    clip-path: polygon(0% 50%, 20% 0%, 100% 50%, 20% 100%);
    pointer-events: none;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    border-radius: 2px;
}