/* ==================== Variables ==================== */
:root {
    /* Beach & Ocean Colors */
    --ocean-blue: #1e88e5;
    --deep-ocean: #0d47a1;
    --turquoise: #26c6da;
    --sand: #ffd180;
    --coral: #ff6f61;
    --lobster-red: #e53935;
    --seafoam: #80deea;
    --white: #ffffff;
    --cream: #fff8e1;
    --rock-gray: #78909c;
    
    /* Gradients */
    --ocean-gradient: linear-gradient(135deg, #1e88e5 0%, #26c6da 100%);
    --sunset-gradient: linear-gradient(135deg, #ff6f61 0%, #ffd180 100%);
    --wave-gradient: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    
    /* Spacing */
    --section-padding: 100px 20px;
    --container-max-width: 1200px;
}

/* ==================== Reset & Base ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==================== Video Background ==================== */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(13, 71, 161, 0.7) 0%,
        rgba(30, 136, 229, 0.6) 50%,
        rgba(38, 198, 218, 0.5) 100%
    );
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(13, 71, 161, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Righteous', cursive;
    font-size: 28px;
    font-weight: 700;
    background: var(--sunset-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==================== Hero Section ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--section-padding);
    position: relative;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.hero-content * {
    pointer-events: auto;
}

.lobster-float {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.hero-title {
    font-family: 'Righteous', cursive;
    font-size: clamp(48px, 8vw, 96px);
    margin-bottom: 20px;
    line-height: 1.1;
}

.ocean-text {
    color: var(--turquoise);
    text-shadow: 0 0 30px rgba(38, 198, 218, 0.5);
}

.rock-text {
    color: var(--coral);
    text-shadow: 0 0 30px rgba(255, 111, 97, 0.5);
}

.ticker {
    display: inline-block;
    background: var(--sunset-gradient);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--cream);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 100;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--ocean-gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background: var(--sunset-gradient);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 111, 97, 0.4);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.02);
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    animation: wave 10s ease-in-out infinite;
}

/* ==================== About Section ==================== */
.about {
    padding: var(--section-padding);
    background: rgba(13, 71, 161, 0.8);
    backdrop-filter: blur(10px);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Righteous', cursive;
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
    background: var(--sunset-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--sunset-gradient);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rock-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.painted-rock {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #78909c 0%, #546e7a 100%);
    border-radius: 40% 60% 50% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: rockRotate 20s ease-in-out infinite;
}

.rock-emoji {
    font-size: 120px;
    position: absolute;
}

.fish-emoji {
    font-size: 60px;
    position: absolute;
    top: 20%;
    right: 10%;
    animation: swim 3s ease-in-out infinite;
}

.about-text {
    color: var(--white);
}

.lead {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--turquoise);
}

.about-text p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--turquoise);
}

.feature-item p {
    font-size: 14px;
    margin: 0;
}

/* ==================== Gallery Section ==================== */
.gallery {
    padding: var(--section-padding);
    background: rgba(30, 136, 229, 0.8);
    backdrop-filter: blur(10px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.gallery-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #78909c 0%, #546e7a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.placeholder-icon {
    font-size: 80px;
}

.gallery-placeholder p {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

/* ==================== Tokenomics Section ==================== */
.tokenomics {
    padding: var(--section-padding);
    background: rgba(13, 71, 161, 0.8);
    backdrop-filter: blur(10px);
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--turquoise);
}

.stat-card h3 {
    font-size: 18px;
    color: var(--turquoise);
    margin-bottom: 15px;
}

.stat-value {
    font-family: 'Righteous', cursive;
    font-size: 48px;
    color: var(--coral);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--cream);
}

/* ==================== Community Section ==================== */
.community {
    padding: var(--section-padding);
    background: rgba(30, 136, 229, 0.8);
    backdrop-filter: blur(10px);
}

.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.pumpfun {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
}

.social-btn.dexscreener {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.social-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* ==================== Footer ==================== */
.footer {
    padding: 40px 20px;
    background: rgba(13, 71, 161, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-text {
    margin-bottom: 10px;
    color: var(--cream);
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--rock-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== Animations ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-25px); }
}

@keyframes rockRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

@keyframes swim {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(13, 71, 161, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lobster-float {
        width: 80px;
        height: 80px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .token-stats {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 42px;
    }
    
    .ticker {
        font-size: 22px;
        padding: 10px 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .lobster-float {
        width: 60px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .btn {
        font-size: 16px;
        padding: 12px 30px;
    }
    
    .painted-rock {
        width: 200px;
        height: 200px;
    }
    
    .rock-emoji {
        font-size: 80px;
    }
    
    .fish-emoji {
        font-size: 40px;
    }
}
