/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFD700;
    --night-blue: #1A202C;
    --chill-purple: #7C3AED;
    --soft-pink: #F472B6;
    --dreamy-blue: #60A5FA;
    --text-dark: #111827;
    --white: #ffffff;
    --light-bg: #F8FAFC;
    --shadow-soft: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-glow: rgba(255, 215, 0, 0.3);
    --gradient-main: linear-gradient(135deg, var(--dreamy-blue) 0%, var(--soft-pink) 50%, var(--primary-yellow) 100%);
    --gradient-card: linear-gradient(145deg, var(--white) 0%, #f1f5f9 100%);
    --gradient-purple: linear-gradient(135deg, var(--chill-purple) 0%, #6366f1 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comic Neue', cursive;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--gradient-main);
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Loading Screen */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-yellow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.loading.fade-out {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.loading-logo {
    width: 120px;
    height: 120px;
    animation: float 2s ease-in-out infinite;
    margin-bottom: 2rem;
}

.loading-text {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: var(--text-dark);
    animation: pulse 1.5s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px var(--shadow-soft);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--chill-purple);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--chill-purple);
    transform: translateY(-2px);
}

/* Enhanced CTA Button in Navigation */
.nav-cta-item {
    margin-left: 1rem;
}

.nav-cta-btn {
    background: linear-gradient(45deg, var(--primary-yellow), var(--chill-purple)) !important;
    color: var(--white) !important;
    padding: 0.8rem 1.8rem !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 20px var(--shadow-glow) !important;
    border: 2px solid var(--white) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    position: relative;
    overflow: hidden;
    animation: glow-pulse 2s ease-in-out infinite;
}

.nav-cta-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px var(--shadow-medium) !important;
    background: linear-gradient(45deg, var(--chill-purple), var(--primary-yellow)) !important;
}

.nav-cta-btn::before,
.nav-cta-btn::after {
    display: none !important;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 6px 20px var(--shadow-glow);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    }
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-btn {
    background: linear-gradient(45deg, var(--primary-yellow), var(--chill-purple));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px var(--shadow-glow);
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: float-btn 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--night-blue);
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow-soft);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: var(--chill-purple);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-yellow), var(--chill-purple));
    color: var(--white);
    box-shadow: 0 8px 25px var(--shadow-glow);
    border: 2px solid var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    animation: glow-pulse 2s ease-in-out infinite;
}

.btn-secondary {
    background: var(--white);
    color: var(--night-blue);
    border: 3px solid var(--night-blue);
    font-weight: 700;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

/* Section Styles */
.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--night-blue);
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* Presale Section */
.presale-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.presale-date {
    text-align: center;
    font-size: 1.3rem;
    color: var(--chill-purple);
    font-weight: 700;
    margin-bottom: 3rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.time-unit {
    background: var(--night-blue);
    color: var(--white);
    padding: 2rem 1rem;
    border-radius: 20px;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow-soft);
    transition: transform 0.3s ease;
    border: 3px solid var(--primary-yellow);
}

.time-unit:hover {
    transform: scale(1.05);
}

.time-number {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.time-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-yellow);
}

.presale-info {
    text-align: center;
}

.presale-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.presale-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    background: var(--gradient-purple);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    border: 2px solid var(--primary-yellow);
}

/* Whitelist Section */
.whitelist-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.whitelist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.whitelist-info h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--chill-purple);
    margin-bottom: 2rem;
}

.whitelist-benefits {
    display: grid;
    gap: 1.5rem;
}

.benefit-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-soft);
    border-left: 4px solid var(--primary-yellow);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-item h4 {
    font-family: 'Fredoka One', cursive;
    color: var(--night-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.whitelist-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-soft);
    border: 3px solid var(--chill-purple);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.whitelist-form h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--chill-purple);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.form-subtitle {
    color: var(--night-blue);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.whitelist-form .form-group {
    margin-bottom: 1.5rem;
}

.whitelist-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.whitelist-form input,
.whitelist-form select,
.whitelist-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--night-blue);
    border-radius: 10px;
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.whitelist-form input:focus,
.whitelist-form select:focus,
.whitelist-form textarea:focus {
    outline: none;
    border-color: var(--chill-purple);
    box-shadow: 0 0 0 3px rgba(159, 122, 234, 0.2);
}

.whitelist-form textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-dark);
    font-weight: 600;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--chill-purple);
    flex-shrink: 0;
}

.whitelist-btn {
    width: 100%;
    font-size: 1.2rem;
    padding: 1.2rem;
    margin-top: 1rem;
    background: linear-gradient(45deg, var(--chill-purple), var(--primary-yellow));
    color: var(--text-dark);
    border: none;
    font-weight: 700;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--night-blue);
    margin-top: 1rem;
    font-style: italic;
    font-weight: 600;
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 6rem 0;
    background: var(--gradient-purple);
    color: var(--white);
}

.tokenomics-section .section-title {
    color: var(--white);
}

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

.token-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.token-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.token-percentage {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.token-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.token-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
    background: var(--white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-card {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(159, 122, 234, 0.1);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.philosophy-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--chill-purple);
    margin-bottom: 1rem;
}

.philosophy-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Memes Section */
.memes-section {
    padding: 6rem 0;
    background: var(--light-bg);
    position: relative;
}

.memes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
}

.meme-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-soft);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
    border: 3px solid transparent;
}

.meme-card.visible {
    opacity: 1;
    filter: none;
    transform: scale(1);
}

.meme-card.faded {
    opacity: 1;
    filter: none;
    transform: scale(1);
    position: relative;
}

.meme-card.faded::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent 0%, rgba(248, 250, 252, 0.7) 50%, rgba(248, 250, 252, 0.95) 100%);
    pointer-events: none;
    z-index: 10;
    border-radius: 0 0 22px 22px;
}

.meme-card.hidden {
    display: none;
}

.meme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px var(--shadow-medium);
    border-color: var(--primary-yellow);
}

.meme-card.faded:hover::after {
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.meme-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1rem;
    transition: none;
}

.meme-content {
    padding: 2rem;
    position: relative;
    z-index: 5;
    background: var(--white);
}

.meme-content h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.meme-content p {
    color: var(--night-blue);
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
}

.show-more-btn {
    margin: 4rem auto 0;
    display: block;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Community Section */
.community-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.community-platform {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.community-platform:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
}

.platform-header {
    margin-bottom: 1.5rem;
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.platform-header h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--night-blue);
    font-size: 1.5rem;
    margin: 0;
}

.platform-stats {
    margin-bottom: 1rem;
}

.stat-big {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: var(--chill-purple);
    margin-bottom: 0.2rem;
}

.stat-label {
    color: var(--night-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.community-platform p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.platform-btn {
    background: linear-gradient(45deg, var(--primary-yellow), var(--chill-purple));
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.community-proof {
    background: var(--night-blue);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.community-proof h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.activity-feed {
    display: grid;
    gap: 1rem;
}

.activity-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.activity-user {
    color: var(--primary-yellow);
    font-weight: 700;
    min-width: 100px;
}

.activity-text {
    flex: 1;
    color: var(--white);
}

.activity-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    min-width: 60px;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-yellow);
}

.faq-item:hover {
    box-shadow: 0 10px 30px var(--shadow-medium);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    background: var(--white);
}

.faq-question:hover {
    background: rgba(159, 122, 234, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--chill-purple);
    transition: transform 0.3s ease;
    font-weight: bold;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--night-blue);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--white);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.social-link:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
    border-color: var(--primary-yellow);
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--primary-yellow);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--night-blue);
    border-radius: 10px;
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--chill-purple);
    box-shadow: 0 0 0 3px rgba(159, 122, 234, 0.2);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    text-align: left;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-style: italic;
    color: var(--white);
    font-size: 1.1rem;
}

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

.footer-section h4 {
    font-family: 'Fredoka One', cursive;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: var(--white);
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .countdown-timer {
        gap: 1.5rem;
    }
    
    .community-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 20px 20px;
        gap: 1.5rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-cta-item {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    /* Hero */
    .hero {
        padding: 6rem 1rem 3rem;
        min-height: 90vh;
    }
    
    .hero-logo {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 1.2rem 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    /* Presale */
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .time-unit {
        min-width: auto;
        padding: 1.5rem 1rem;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .time-label {
        font-size: 0.9rem;
    }
    
    .presale-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    /* Whitelist */
    .whitelist-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .whitelist-form-container {
        padding: 2rem;
    }
    
    .form-header {
        margin-bottom: 1.5rem;
    }
    
    .whitelist-form h3 {
        font-size: 1.6rem;
    }
    
    .benefit-item {
        padding: 1.2rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
    
    /* Tokenomics */
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .token-card {
        padding: 2rem 1.5rem;
    }
    
    .token-percentage {
        font-size: 3rem;
    }
    
    /* Philosophy */
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .philosophy-card {
        padding: 2rem;
    }
    
    /* Memes */
    .memes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .meme-image {
        height: 250px;
    }
    
    .meme-content {
        padding: 1.5rem;
    }
    
    .meme-content h3 {
        font-size: 1.3rem;
    }
    
    /* Community */
    .community-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .community-platform {
        padding: 1.5rem;
    }
    
    .activity-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .activity-user,
    .activity-time {
        min-width: auto;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    /* Floating CTA */
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Typography */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 0.8rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    /* Container */
    .container {
        padding: 0 0.8rem;
    }
    
    /* Hero */
    .hero {
        padding: 5rem 0.8rem 2rem;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Countdown */
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .time-unit {
        padding: 1.2rem 0.8rem;
    }
    
    .time-number {
        font-size: 1.8rem;
    }
    
    .time-label {
        font-size: 0.8rem;
    }
    
    /* Cards */
    .token-percentage {
        font-size: 2.5rem;
    }
    
    .token-card {
        padding: 1.5rem 1rem;
    }
    
    .philosophy-card {
        padding: 1.5rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    /* Forms */
    .whitelist-form-container {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .whitelist-form input,
    .whitelist-form select,
    .whitelist-form textarea,
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    /* Community */
    .community-platform {
        padding: 1.2rem;
    }
    
    .platform-icon {
        font-size: 2.5rem;
    }
    
    .stat-big {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    /* Memes */
    .meme-image {
        height: 220px;
        padding: 0.8rem;
    }
    
    .meme-content {
        padding: 1.2rem;
    }
    
    .meme-content h3 {
        font-size: 1.2rem;
    }
    
    .meme-content p {
        font-size: 1rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
    
    /* Floating Button */
    .floating-cta {
        bottom: 0.8rem;
        right: 0.8rem;
    }
    
    .floating-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* High DPI / Retina Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .hero-logo,
    .form-logo,
    .footer-logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 3rem 1rem 2rem;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero-logo {
        max-width: 200px;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}








/* Music Video Section */
.music-video-section {
  padding: 6rem 0 3rem;
  background: var(--light-bg);
  text-align: center;
}

.music-video-section .section-title {
  margin-bottom: 1rem;
}

.music-video-section .section-subtitle {
  font-size: 1.2rem;
  color: var(--night-blue);
  margin-bottom: 2rem;
  font-weight: 500;
}

.music-video {
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 15px 40px var(--shadow-soft);
  border: 3px solid var(--primary-yellow);
  background: var(--gradient-card);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .music-video {
    max-width: 100%;
    border-radius: 15px;
  }
}
