/* --- GLOBAL STYLES & VARIABLES --- */
:root {
    --bg-deep-blue: #0f0c29;
    --bg-mid-blue: #1a1a2e;
    --accent-cyan: #00f2ea;
    --text-light: #f0f0f0;
    --text-dark: #111;
    --font-headline: 'Bangers', cursive;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(to right, var(--bg-deep-blue), var(--bg-mid-blue));
    color: var(--text-light);
    overflow-x: hidden;
}

/* --- PARTICLES & SONAR --- */
#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0;
    animation: rise 5s infinite ease-in;
}

@keyframes rise {
    0% { transform: translateY(0); opacity: 0; }
    20% { opacity: 0.4; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

#sonar-ping {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    z-index: 9999;
}

body.loading #sonar-ping {
    animation: sonar 1.5s ease-out forwards;
}

@keyframes sonar {
    0% { transform: translate(-50%, -50%) scale(0.1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(50); opacity: 0; }
}

/* --- ANIMATE ON SCROLL --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(15, 12, 41, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-family: var(--font-headline);
    font-size: 2rem;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img { width: 40px; }

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-cyan);
}

.nav-cta {
    background: var(--accent-cyan);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
}

/* --- GENERAL SECTION & HEADLINE STYLING --- */
section {
    padding: 100px 5%;
    position: relative;
    min-height: 80vh;
}

.headline-main {
    font-family: var(--font-headline);
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 1;
    color: var(--text-light);
    text-shadow: 
        -3px -3px 0 var(--accent-cyan),  
         3px -3px 0 var(--accent-cyan),
        -3px  3px 0 var(--accent-cyan),
         3px  3px 0 var(--accent-cyan),
        -4px -4px 5px #000;
}

.headline-section {
    font-family: var(--font-headline);
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.sub-headline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--accent-cyan);
    font-weight: 600;
    text-shadow: 0 0 10px var(--accent-cyan);
    margin: 1rem 0 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--accent-cyan);
    color: var(--text-dark);
    font-family: var(--font-headline);
    font-size: 1.8rem;
    padding: 0.8rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.5);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--accent-cyan);
}

/* --- SECTION 1: HERO --- */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
}
.hero-shark-img {
    position: absolute;
    right: -10%;
    bottom: 0;
    width: 60%;
    max-width: 800px;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}
.hero-content {
    z-index: 1;
}

/* --- SECTION 2: STATS --- */
#stats {
    padding: 0; /* No padding on section itself */
}
.stats-container {
    background: white;
    color: var(--text-dark);
    padding: 5rem 5%;
    transform: rotate(-3deg);
    margin-top: -100px; /* Overlap */
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.stats-container .jagged {
    color: var(--text-dark);
    text-shadow: -2px 2px 0 var(--accent-cyan);
}
.stats-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.stat-card {
    border: 3px solid var(--accent-cyan);
    padding: 2rem;
    width: 300px;
    text-align: center;
    background: white;
}
.stat-card h3 {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    color: var(--text-dark);
}
.stats-crash-img {
    position: absolute;
    bottom: -80px;
    right: 20px;
    width: 250px;
    transform: rotate(15deg);
    z-index: -1;
    filter: drop-shadow(5px 5px 10px #000);
}


/* --- SECTION 3: ABOUT --- */
#about {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-top: 150px;
}
.about-image { flex: 1; }
.about-image img { max-width: 100%; filter: drop-shadow(0 0 20px var(--accent-cyan));}
.about-text { flex: 1.2; }
.about-text .vertical {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 0.9;
    margin-bottom: 2rem;
}
.about-text p { font-size: 1.1rem; line-height: 1.7; margin-bottom: 1rem; }
.secondary-cta {
    color: var(--accent-cyan);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
}

/* --- SECTION 4: ROADMAP --- */
#roadmap {
    padding-top: 100px;
    text-align: center;
}
.roadmap-path {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}
/* Add a decorative line later if desired */
.roadmap-item {
    background: rgba(26, 26, 46, 0.7);
    padding: 2rem;
    border: 2px solid var(--accent-cyan);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 242, 234, 0.2);
}
.roadmap-item h3 {
    font-family: var(--font-headline);
    color: var(--accent-cyan);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.roadmap-item ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}
.roadmap-item li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 25px;
}
.roadmap-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

/* --- SECTION 5: COMMUNITY --- */
#community {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bg-deep-blue);
    min-height: 90vh;
}
#community .headline-main { font-size: clamp(5rem, 15vw, 12rem); }
#community p { font-size: 1.2rem; max-width: 600px; margin: 1rem auto 2rem; }
/* .eye-container {
    margin-bottom: 2rem;
}
.shark-eye {
    width: 150px;
    height: 150px;
    background-image: url("logo.png");
    background: var(--accent-cyan);
    border-radius: 50%;
    position: relative;
    border: 5px solid black;
    box-shadow: 0 0 30px var(--accent-cyan), inset 0 0 20px rgba(0,0,0,0.5);
}
.pupil {
    width: 50px;
    height: 50px;
    background: black;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #333;
} */

.eye-container {
            margin-bottom: 2rem;
        }

        /* This class now holds and displays your image */
        .image-holder {
            width: 300px;
            height: 300px;
            
            /* The URL of the image you provided */
            background-image: url("");
            
            /* These properties ensure the image fits perfectly */
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }
.social-links {
    display: flex;
    gap: 2rem;
}
.social-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-cyan);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-headline);
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.social-icon:hover { transform: scale(1.1) rotate(10deg); }


/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 2rem 5%;
    background: #000;
    color: #666;
}
footer p { margin: 0.5rem 0; }

/* --- RESPONSIVE DESIGN --- */
@media (min-width: 768px) {
    .roadmap-path {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .roadmap-path {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    header { padding: 1rem 3%; }
    nav a { margin-left: 1rem; }
    .hero-shark-img { width: 90%; right: -25%; opacity: 0.5; }
    .stats-container { transform: rotate(0); margin-top: 0; }
    .stats-crash-img { display: none; }
    #about { flex-direction: column; }
    .about-text .vertical { text-align: center; }
}
