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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fredoka', cursive;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 50%, #fff0f0 100%);
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 50px;
}

.container {
    position: relative;
    width: 100%;
    padding-top: 40px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 100;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 200, 0, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Contract Address Section */
.contract-section {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 100;
    max-width: 800px;
    margin: 0 auto;
}

.contract-label {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contract-address:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.address-text {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    word-break: break-all;
}

.copy-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background-color: #333333;
    transform: scale(1.05);
}

/* Floating Stars */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    color: #000000;
    font-size: 20px;
    animation: float 3s ease-in-out infinite;
}

.star-1 { top: 15%; left: 10%; animation-delay: 0s; }
.star-2 { top: 25%; left: 85%; animation-delay: 0.5s; }
.star-3 { top: 40%; left: 15%; animation-delay: 1s; }
.star-4 { top: 60%; left: 90%; animation-delay: 1.5s; }
.star-5 { top: 75%; left: 5%; animation-delay: 2s; }
.star-6 { top: 20%; left: 75%; animation-delay: 2.5s; }
.star-7 { top: 50%; left: 8%; animation-delay: 0.8s; }
.star-8 { top: 80%; left: 80%; animation-delay: 1.2s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Main Content Box */
.main-content-box {
    position: relative;
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    margin: 40px auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

/* Character Container */
.character-container {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

/* Lanterns */
.lanterns {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.lantern {
    width: 30px;
    height: 40px;
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    border: 2px solid #000;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: swing 2s ease-in-out infinite;
}

.lantern-1 { animation-delay: 0s; }
.lantern-2 { animation-delay: 0.3s; }
.lantern-3 { animation-delay: 0.6s; }

.lantern::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

.lantern::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
}

@keyframes swing {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

/* Ramen Character */
.ramen-character {
    display: inline-block;
    position: relative;
    margin-top: 20px;
}

.ramen-bowl {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto;
}

.bowl-body {
    width: 100%;
    height: 80px;
    background-color: #ffffff;
    border: 3px solid #000000;
    border-radius: 0 0 60px 60px;
    position: relative;
}

.bowl-stripe {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 8px;
    background-color: #ff0000;
    border: 2px solid #000000;
}

.stripe-1 { top: 20px; }
.stripe-2 { top: 35px; }

.bowl-legs {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.leg {
    width: 8px;
    height: 15px;
    background-color: #00ff00;
    border: 2px solid #000000;
    border-radius: 4px;
}

.bowl-bow {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
    background-color: #ff0000;
    border: 2px solid #000000;
    border-radius: 10px;
}

/* Noodles */
.noodles {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
}

.noodle {
    position: absolute;
    width: 3px;
    background-color: #ffff00;
    border: 1px solid #000000;
    border-radius: 2px;
    animation: noodle-wave 2s ease-in-out infinite;
}

.noodle-1 {
    height: 40px;
    left: 20px;
    animation-delay: 0s;
}

.noodle-2 {
    height: 35px;
    left: 40px;
    animation-delay: 0.3s;
}

.noodle-3 {
    height: 45px;
    left: 60px;
    animation-delay: 0.6s;
}

@keyframes noodle-wave {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(2deg); }
}

/* Garnishes */
.garnishes {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
}

.green-onion {
    position: absolute;
    width: 2px;
    background-color: #00ff00;
    border: 1px solid #000000;
    border-radius: 1px;
}

.green-onion-1 {
    height: 25px;
    left: 20px;
    animation: garnish-sway 1.5s ease-in-out infinite;
}

.green-onion-2 {
    height: 20px;
    left: 40px;
    animation: garnish-sway 1.5s ease-in-out infinite 0.5s;
}

@keyframes garnish-sway {
    0%, 100% { transform: rotate(-1deg); }
    50% { transform: rotate(1deg); }
}

.pink-swirl {
    position: absolute;
    top: 25px;
    right: 15px;
    width: 15px;
    height: 15px;
    background-color: #ff69b4;
    border: 2px solid #000000;
    border-radius: 50%;
    animation: swirl 3s ease-in-out infinite;
}

@keyframes swirl {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

/* Text Content */
.text-content {
    text-align: left;
}

.main-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
}

.description {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
}

/* Side Waves */
.waves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.wave-left {
    position: absolute;
    left: 20px;
    top: 40%;
    transform: translateY(-50%);
}

.wave-right {
    position: absolute;
    right: 20px;
    top: 40%;
    transform: translateY(-50%);
}

.wave-line {
    width: 80px;
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
    margin: 8px 0;
    animation: wave-move 2s ease-in-out infinite;
}

.wave-right .wave-line {
    animation: wave-move-reverse 2s ease-in-out infinite;
}

.wave-line:nth-child(1) { animation-delay: 0s; }
.wave-line:nth-child(2) { animation-delay: 0.3s; }
.wave-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes wave-move {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(10px); }
}

@keyframes wave-move-reverse {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-10px); }
}


/* Section Styles */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    position: relative;
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    margin: 50px auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.about-content {
    text-align: left;
}

.about-text {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Features Section */
.features-section {
    position: relative;
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 40px;
    max-width: 1000px;
    width: 90%;
    margin: 50px auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
    border: 2px solid #000000;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 15px;
    animation: rotate 3s ease-in-out infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    line-height: 1.5;
    margin: 0;
}

/* Social Section */
.social-section {
    position: relative;
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    margin: 50px auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 2px solid #000000;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.twitter-btn {
    background-color: #1DA1F2;
}

.telegram-btn {
    background-color: #0088cc;
}

.dextools-btn {
    background-color: #05a3c7;
}

.pancakeswap-btn {
    background-color: #1fc7d4;
}

.paid-badge {
    background-color: #ffd700;
    color: #000000;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 8px;
    border: 1px solid #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.soon-badge {
    background-color: #ff6b6b;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 8px;
    border: 1px solid #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Media Section */
.media-section {
    position: relative;
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 40px;
    max-width: 1000px;
    width: 90%;
    margin: 50px auto 80px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.media-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
}

.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
}

.media-item {
    text-align: center;
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.media-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 10px;
}

.media-caption {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-bottom: 30px;
    }

    .container {
        padding-top: 30px;
    }

    .hero-section {
        padding: 40px 20px 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .badge {
        font-size: 14px;
        padding: 8px 16px;
    }

    .contract-section {
        padding: 25px 15px;
    }

    .contract-label {
        font-size: 18px;
    }

    .contract-address {
        flex-direction: column;
        gap: 10px;
        padding: 12px 15px;
    }

    .address-text {
        font-size: 14px;
        word-break: break-all;
    }

    .main-content-box {
        padding: 30px 20px;
        margin: 20px auto;
    }
    
    .main-title {
        font-size: 20px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .ramen-bowl {
        width: 100px;
        height: 80px;
    }

    .wave-left,
    .wave-right {
        display: none;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .about-section,
    .tokenomics-section,
    .social-section,
    .media-section {
        padding: 30px 20px;
        margin: 30px auto;
    }
    
    .about-text {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        font-size: 40px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .media-title {
        font-size: 24px;
    }
    
    .media-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .media-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-top: 20px;
    }

    .hero-section {
        padding: 30px 15px 25px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .badge {
        font-size: 13px;
        padding: 6px 14px;
        width: 80%;
    }

    .contract-section {
        padding: 20px 10px;
    }

    .contract-label {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contract-address {
        padding: 10px 12px;
        gap: 8px;
    }

    .address-text {
        font-size: 12px;
        line-height: 1.4;
    }

    .copy-btn {
        padding: 6px;
    }

    .main-content-box {
        margin: 15px auto;
        padding: 20px 15px;
    }

    .main-title {
        font-size: 18px;
    }
    
    .description {
        font-size: 14px;
    }
    
    .ramen-bowl {
        width: 80px;
        height: 60px;
    }
    
    .lantern {
        width: 25px;
        height: 35px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .about-section,
    .features-section,
    .social-section,
    .media-section {
        margin: 20px auto;
        padding: 20px 15px;
    }

    .about-text {
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-icon {
        font-size: 38px;
    }

    .feature-title {
        font-size: 17px;
    }

    .feature-description {
        font-size: 13px;
    }

    .social-links {
        flex-direction: column;
        gap: 10px;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .media-title {
        font-size: 20px;
    }
    
    .media-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .media-image {
        width: 100px;
        height: 100px;
    }
    
    .media-caption {
        font-size: 12px;
    }

    .star {
        font-size: 16px;
    }
}
