/* PUNCH WHALE - Memecoin Solana Landing */

:root {
    --bg-dark: #0a0e17;
    --bg-card: #111827;
    --accent-cyan: #22d3ee;
    --accent-blue: #3b82f6;
    --accent-orange: #f97316;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --gradient-ocean: linear-gradient(135deg, #0ea5e9 0%, #22d3ee 50%, #06b6d4 100%);
    --gradient-punch: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --glow-cyan: 0 0 40px rgba(34, 211, 238, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.noise {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(34, 211, 238, 0.15);
}

.nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
}

.logo-text {
    color: var(--text-white);
}

.logo-accent {
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}

.nav {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--accent-cyan);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-ocean);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-cyan);
}

.btn-twitter {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-muted);
}

.btn-twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 8rem 3rem 4rem;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-family: 'Bangers', cursive;
    font-size: clamp(4rem, 10vw, 7rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(34, 211, 238, 0.8)); }
}

.hero-tagline {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.hero-sub {
    font-size: 1rem;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-center .btn-cta {
    margin-top: 1.5rem;
}

.btn-cta {
    background: var(--gradient-punch);
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background: rgba(34, 211, 238, 0.15);
}

/* Hero Image */
.hero-image-container {
    position: relative;
    flex-shrink: 0;
    order: -1;
}

.hero-image {
    width: min(420px, 90vw);
    height: auto;
    border-radius: 24px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(34, 211, 238, 0.2);
    animation: float 4s ease-in-out infinite;
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Sections */
.section {
    padding: 5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.section-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Buy Section */
.buy-section {
    text-align: center;
}

.buy-section .btn-cta {
    margin-top: 1rem;
}

.btn-dex {
    background: var(--bg-card);
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
}

.btn-dex:hover {
    background: rgba(34, 211, 238, 0.15);
}

/* About */
.about {
    text-align: center;
}

/* Community */
.community {
    text-align: center;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    background: var(--bg-card);
    color: var(--text-white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(34, 211, 238, 0.15);
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {

    .header {
        padding: 1rem 1.5rem;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }
}
