/* ================================
   HAMSTER Meme Website Styles
   ================================ */

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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #000000;
    --accent-yellow: #ffd429;
    --accent-orange: #ff8c00;
    --white: #ffffff;
    --dark: #1a1a2e;
    --gray: #333333;
}

body {
    font-family: 'Fredoka', sans-serif;
    background: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

/* ================================
   Navigation
   ================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 40px;
    height: auto;
}

.nav-logo .logo-text {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: #000000;
    text-shadow: 3px 3px 0 #cccccc;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-yellow);
    transform: scale(1.1);
}


/* ================================
   Hero Section
   ================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    background-image: 
        radial-gradient(ellipse at center, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 30%, rgba(255,255,255,0) 70%),
        url('images/hero-bg.png');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

.hero-content {
    z-index: 10;
}

.hero-tagline {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: var(--accent-yellow);
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    animation: bounceIn 1s ease;
    -webkit-text-stroke: 1px #666666;
    text-shadow: 2px 2px 0 #999999;
}

.hero-title {
    font-family: 'Bangers', cursive;
    font-size: clamp(4rem, 15vw, 10rem);
    color: #ffffff;
    -webkit-text-stroke: 4px #000000;
    text-shadow: 
        5px 5px 0 #333333;
    letter-spacing: 8px;
    line-height: 1;
    animation: bounceIn 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    animation: bounceIn 1s ease 0.4s both;
}

.contract-address {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #333333;
    font-weight: 500;
    animation: bounceIn 1s ease 0.5s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--dark);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-x {
    background: #000000;
    color: #ffffff;
    padding: 1rem 1.5rem;
}

.btn-x:hover {
    background: #333333;
}



@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.5); }
    60% { transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ================================
   Sections Common
   ================================ */

.section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 4px 4px 0 #cccccc;
    letter-spacing: 3px;
    color: #000000;
}

/* ================================
   About Section
   ================================ */

.about-section {
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-img {
    width: 400px;
    height: auto;
    border-radius: 20px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333333;
}

/* ================================
   Tokenomics Section
   ================================ */

.tokenomics-section {
    background: #f9f9f9;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.token-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eeeeee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.token-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
}

.token-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    color: var(--dark);
}

.token-value {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: var(--accent-yellow);
    text-shadow: 2px 2px 0 var(--accent-orange);
}

/* ================================
   How to Buy Section
   ================================ */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eeeeee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.step-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.step-card p {
    opacity: 0.9;
    line-height: 1.6;
    color: var(--dark);
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .character-placeholder {
        width: 250px;
        height: 250px;
    }

    .placeholder-emoji {
        font-size: 5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        display: flex;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* ================================
   Scrollbar Styling
   ================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-yellow);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ================================
   Fullscreen Video Overlay
   ================================ */

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-overlay.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.close-video {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.close-video:hover {
    color: #cccccc;
}
