
:root {
    --fluffy-orange: #FF9F43;
    --fluffy-cream: #FDF2E9;
    --fluffy-brown: #8B4513;
    --fluffy-blue: #3742FA;
    --fluffy-peach: #FFB8B8;
    --white: #FFFFFF;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--fluffy-brown);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Glass Effect */
.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-logo {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}

.nav-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--fluffy-brown);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link, .nav-cta {
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link {
    color: var(--fluffy-brown);
}

.nav-link:hover {
    color: var(--fluffy-orange);
    transform: scale(1.05);
}

.nav-cta {
    background: var(--fluffy-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
}

.nav-cta:hover {
    background: var(--fluffy-brown);
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--fluffy-brown);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding: 1rem;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-link, .mobile-cta {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-nav-link {
    color: var(--fluffy-brown);
    font-weight: 500;
}

.mobile-nav-link:hover {
    color: var(--fluffy-orange);
}

.mobile-cta {
    background: var(--fluffy-orange);
    color: white;
    border-radius: 2rem;
    text-align: center;
    margin: 1rem 0;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.gradient-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--fluffy-orange) 0%, var(--fluffy-peach) 50%, var(--fluffy-blue) 100%);
    animation: bgScale 2s ease-out;
}

@keyframes bgScale {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

.hero-logo-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
    animation: logoFadeIn 2s ease-out;
}

@keyframes logoFadeIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 0.2;
    }
}

.hero-logo-bg img {
    width: 80vw;
    height: 80vh;
    object-fit: contain;
    max-width: none;
}

.cloud-bg {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.cloud-1 {
    width: 24rem;
    height: 24rem;
    top: 10%;
    left: -10%;
    animation: float1 8s ease-in-out infinite;
}

.cloud-2 {
    width: 16rem;
    height: 16rem;
    top: 60%;
    right: -5%;
    animation: float2 6s ease-in-out infinite 2s;
}

.cloud-3 {
    width: 20rem;
    height: 20rem;
    bottom: 10%;
    left: 20%;
    animation: float3 10s ease-in-out infinite 4s;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: heroContentFadeIn 1s ease-out;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    margin-bottom: 2rem;
    animation: logoSpin 1.2s ease-out 0.3s both;
}

@keyframes logoSpin {
    from {
        transform: scale(0) rotate(-180deg);
    }
    to {
        transform: scale(1) rotate(0);
    }
}

.hero-logo img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-25px) rotate(2.5deg); }
    75% { transform: translateY(-25px) rotate(-2.5deg); }
}

.hero-title-1, .hero-title-2 {
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.hero-title-1 {
    font-size: clamp(2rem, 8vw, 6rem);
    color: white;
    animation: titleSlideLeft 0.8s ease-out 0.6s both;
}

@keyframes titleSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title-2 {
    font-size: clamp(3rem, 12vw, 8rem);
    color: var(--fluffy-brown);
    margin-bottom: 2rem;
    animation: titleSlideRight 0.8s ease-out 0.8s both, textGlow 4s ease-in-out infinite;
}

@keyframes titleSlideRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 0 rgba(255, 159, 67, 0); }
    50% { text-shadow: 0 0 20px rgba(255, 159, 67, 0.5); }
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--fluffy-brown);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    animation: subtitleFadeIn 0.8s ease-out 1s both;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    background: white;
    color: var(--fluffy-orange);
    padding: 1rem 3rem;
    border-radius: 2rem;
    border: none;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: ctaScale 0.6s ease-out 1.2s both;
}

@keyframes ctaScale {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-cta:hover {
    transform: scale(1.05);
    background: var(--fluffy-cream);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.hero-cta i {
    margin-right: 0.5rem;
}

/* Section Styling */
.section-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--fluffy-brown);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--fluffy-brown);
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: white;
}

.stats-header {
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--fluffy-cream);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    background: var(--fluffy-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotate(360deg) scale(1.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--fluffy-orange);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--fluffy-brown);
    font-weight: 500;
}

/* NFT Section */
.nft-section {
    padding: 6rem 0;
    background: var(--fluffy-cream);
}

.nft-header {
    margin-bottom: 4rem;
}

.nft-coming-soon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fluffy-orange);
    text-align: center;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 159, 67, 0);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 10px rgba(255, 159, 67, 0.5);
    }
}

.nft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.nft-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.nft-card:hover {
    transform: translateY(-10px) rotateY(5deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.nft-card:nth-child(1) { animation-delay: 0.1s; }
.nft-card:nth-child(2) { animation-delay: 0.2s; }

.nft-image {
    position: relative;
    overflow: hidden;
    height: 16rem;
}

.nft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nft-card:hover .nft-image img {
    transform: scale(1.1);
}

.nft-content {
    padding: 1.5rem;
}

.nft-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fluffy-brown);
    margin-bottom: 0.5rem;
}

.nft-rarity {
    color: var(--fluffy-brown);
    margin-bottom: 1rem;
}

.nft-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nft-status {
    font-weight: 700;
    color: var(--fluffy-orange);
}

.nft-icon {
    color: var(--fluffy-orange);
    transition: transform 0.3s ease;
}

.nft-card:hover .nft-icon {
    transform: rotate(360deg) scale(1.2);
}

/* Community Section */
.community-section {
    padding: 6rem 0;
    background: white;
}

.community-header {
    margin-bottom: 4rem;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.community-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease-out both;
}

.community-card:nth-child(2) {
    animation: slideInRight 0.8s ease-out both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.community-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.community-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.community-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.community-card:hover .community-icon {
    transform: rotate(360deg);
}

.discord-bg { background: #5865F2; }
.telegram-bg { background: #0088CC; }

.community-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fluffy-brown);
    margin-bottom: 0.25rem;
}

.community-info p {
    color: var(--fluffy-brown);
}

.community-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.community-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--fluffy-brown);
    animation: fadeInUp 0.5s ease-out both;
}

.community-features li:nth-child(1) { animation-delay: 0.1s; }
.community-features li:nth-child(2) { animation-delay: 0.2s; }
.community-features li:nth-child(3) { animation-delay: 0.3s; }
.community-features li:nth-child(4) { animation-delay: 0.4s; }

.community-features i {
    color: var(--fluffy-orange);
    margin-right: 0.5rem;
}

.community-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border-radius: 2rem;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.community-btn:hover {
    transform: scale(1.05);
}

.discord-btn {
    background: #5865F2;
}

.discord-btn:hover {
    background: #4752C4;
}

.telegram-btn {
    background: #0088CC;
}

.telegram-btn:hover {
    background: #006BA1;
}

.community-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 32rem;
    margin: 0 auto;
}

.showcase-image {
    aspect-ratio: 1;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.showcase-image:nth-child(1) { animation-delay: 0.1s; }
.showcase-image:nth-child(2) { animation-delay: 0.2s; }

.showcase-image:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-image:hover img {
    transform: scale(1.1);
}

/* Countdown Section */
.countdown-section {
    padding: 4rem 0;
    background: var(--fluffy-cream);
}

.countdown-header {
    text-align: center;
    margin-bottom: 3rem;
}

.countdown-cloud {
    margin-bottom: 1rem;
    animation: cloudFloat 4s ease-in-out infinite;
}

@keyframes cloudFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    25% { 
        transform: translateY(-15px) rotate(2.5deg);
    }
    75% { 
        transform: translateY(-15px) rotate(-2.5deg);
    }
}

.countdown-cloud i {
    font-size: 4rem;
    color: var(--fluffy-orange);
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.countdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.countdown-item i {
    color: var(--fluffy-orange);
    font-size: 1.5rem;
}

.countdown-value {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--fluffy-orange);
    animation: flipIn 0.6s ease-out both;
}

.countdown-label {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--fluffy-brown);
}

.countdown-separator {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--fluffy-brown);
    margin: 0 0.5rem;
}

.countdown-separator:last-child {
    display: none;
}

@keyframes flipIn {
    from {
        transform: rotateX(90deg);
        opacity: 0;
    }
    to {
        transform: rotateX(0);
        opacity: 1;
    }
}

.countdown-text {
    text-align: center;
    font-size: 1.25rem;
    color: var(--fluffy-brown);
    font-weight: 500;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Highlights Section */
.highlights-section {
    padding: 6rem 0;
    background: var(--fluffy-cream);
}

.highlights-header {
    margin-bottom: 4rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.highlight-card:nth-child(1) { animation-delay: 0.1s; }
.highlight-card:nth-child(2) { animation-delay: 0.2s; }
.highlight-card:nth-child(3) { animation-delay: 0.3s; }
.highlight-card:nth-child(4) { animation-delay: 0.4s; }
.highlight-card:nth-child(5) { animation-delay: 0.5s; }
.highlight-card:nth-child(6) { animation-delay: 0.6s; }

.highlight-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: rotate(360deg) scale(1.1);
}

.orange-bg { background: var(--fluffy-orange); }
.blue-bg { background: var(--fluffy-blue); }
.peach-bg { background: var(--fluffy-peach); }
.purple-bg { background: #8B5CF6; }
.green-bg { background: #10B981; }
.pink-bg { background: #EC4899; }

.highlight-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fluffy-brown);
    margin-bottom: 1rem;
}

.highlight-card p {
    color: var(--fluffy-brown);
    line-height: 1.6;
}

/* Join Section */
.join-section {
    padding: 6rem 0;
    background: white;
}

.join-header {
    margin-bottom: 4rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.social-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out both;
}

.social-card:nth-child(1) { animation-delay: 0.1s; }
.social-card:nth-child(2) { animation-delay: 0.2s; }
.social-card:nth-child(3) { animation-delay: 0.3s; }
.social-card:nth-child(4) { animation-delay: 0.4s; }

.social-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.social-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.2) rotate(360deg);
}

.twitter-bg { background: #000000; }
.instagram-bg { background: linear-gradient(45deg, #8B5CF6, #EC4899); }

.social-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--fluffy-brown);
}

/* Footer */
.footer {
    background: var(--fluffy-brown);
    color: var(--fluffy-cream);
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-brand:hover {
    transform: scale(1.05);
}

.footer-logo {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    animation: logoRotate 4s ease-in-out infinite;
}

@keyframes logoRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2.5deg); }
    75% { transform: rotate(-2.5deg); }
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-socials a {
    color: var(--fluffy-cream);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: var(--fluffy-orange);
    transform: scale(1.2) rotate(15deg);
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.75;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-logo img {
        width: 6rem;
        height: 6rem;
    }
    
    .countdown-display {
        gap: 0.5rem 1rem;
    }
    
    .countdown-separator {
        margin: 0 0.25rem;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .community-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .nft-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-display {
        flex-direction: column;
        gap: 1rem;
    }
    
    .countdown-separator {
        display: none;
    }
}

/* Fade in animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced countdown animations */
.countdown-value {
    animation: flipIn 0.6s ease-out both, countdownPulse 2s ease-in-out infinite;
}

@keyframes countdownPulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 159, 67, 0);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(255, 159, 67, 0.3);
    }
}

/* Active navbar link styling */
.nav-link.active {
    color: var(--fluffy-orange);
}

/* Show mobile menu when active */
.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}
