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

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(135deg, #E6F3FF, #F0E6FF, #FFE6F0);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FFA500, #FF6347, #FF69B4);
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FF6347, #FF69B4, #DDA0DD);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #FF6347 #E6F3FF;
}

body {
    font-family: 'Fredoka', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFB6C1, #DDA0DD, #98FB98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-mascot {
    margin-bottom: 30px;
}

.loading-mascot-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: block;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.loading-text {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.loading-bar {
    width: 200px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #FF69B4, #FFB6C1);
    border-radius: 10px;
    animation: loading 2s ease-in-out infinite;
}

.hidden {
    display: none;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}



@keyframes loading {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

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

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFA500, #FF6347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FF6347;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFA500, #FF6347);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #E6F3FF, #F0E6FF, #FFE6F0);
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 243, 255, 0.3), rgba(240, 230, 255, 0.3), rgba(255, 230, 240, 0.3));
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FFB6C1" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23DDA0DD" opacity="0.3"/><circle cx="40" cy="80" r="1" fill="%2398FB98" opacity="0.3"/></svg>');
    animation: float 20s infinite linear;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-mascot {
    margin-bottom: 2rem;
}

.mascot-image {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    animation: dance-mascot 2s ease-in-out infinite;
}

@keyframes dance-mascot {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translateY(-8px) rotate(-3deg) scale(1.02);
    }
    75% {
        transform: translateY(-12px) rotate(2deg) scale(1.03);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFA500, #FF6347, #FF69B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

@keyframes dance-text {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-8px) rotate(1deg);
    }
}

@keyframes dance-char {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: drop-shadow(0 0 3px rgba(255, 165, 0, 0.6)) drop-shadow(0 0 6px rgba(255, 99, 71, 0.4));
        opacity: 1;
    }
    25% {
        transform: translateY(-12px) rotate(8deg) scale(1.2);
        filter: drop-shadow(0 0 5px rgba(255, 165, 0, 0.8)) drop-shadow(0 0 8px rgba(255, 99, 71, 0.6)) drop-shadow(0 0 12px rgba(255, 105, 180, 0.4));
        opacity: 1;
    }
    50% {
        transform: translateY(-6px) rotate(-5deg) scale(1.1);
        filter: drop-shadow(0 0 4px rgba(255, 165, 0, 0.7)) drop-shadow(0 0 7px rgba(255, 99, 71, 0.5));
        opacity: 1;
    }
    75% {
        transform: translateY(-9px) rotate(4deg) scale(1.15);
        filter: drop-shadow(0 0 6px rgba(255, 165, 0, 0.8)) drop-shadow(0 0 10px rgba(255, 99, 71, 0.6)) drop-shadow(0 0 14px rgba(255, 105, 180, 0.4));
        opacity: 1;
    }
}

@keyframes dance-particle {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-15px) rotate(270deg) scale(1.1);
        opacity: 0.9;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
    animation: bounce-subtitle 1.5s ease-in-out infinite;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #FFA500, #FF6347);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 99, 71, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #DDA0DD, #FFB6C1);
    color: white;
    box-shadow: 0 4px 15px rgba(221, 160, 221, 0.3);
}

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

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid #FF6347;
    border-radius: 15px;
    position: relative;
}

.scroll-arrow {
    width: 4px;
    height: 8px;
    background: #FF6347;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFA500, #FF6347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFA500, #FF6347);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #F8F9FF, #FFF8F9);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23FFB6C1" opacity="0.1"/><circle cx="90" cy="30" r="0.8" fill="%23DDA0DD" opacity="0.1"/><circle cx="30" cy="90" r="0.6" fill="%2398FB98" opacity="0.1"/><circle cx="70" cy="70" r="0.7" fill="%23FFA500" opacity="0.1"/></svg>');
    animation: float-slow 30s infinite linear;
}

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

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.about-text p:nth-child(1) { animation-delay: 0.2s; }
.about-text p:nth-child(2) { animation-delay: 0.4s; }
.about-text p:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-intro {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    background: linear-gradient(135deg, #FFA500, #FF6347, #FF69B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: cardAppear 0.8s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.3s; }
.feature-card:nth-child(2) { animation-delay: 0.5s; }
.feature-card:nth-child(3) { animation-delay: 0.7s; }

@keyframes cardAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #FFA500;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-card:nth-child(1) .feature-icon { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 2s; }

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

.feature-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.about-beliefs {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 25px;
    margin: 3rem 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 2px solid rgba(255, 165, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.about-beliefs::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-beliefs h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 2;
}

.beliefs-list {
    list-style: none;
    position: relative;
    z-index: 2;
}

.beliefs-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
    padding: 0.8rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
}

.beliefs-list li:nth-child(1) { animation-delay: 0.2s; }
.beliefs-list li:nth-child(2) { animation-delay: 0.4s; }
.beliefs-list li:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.beliefs-list li:hover {
    background: rgba(255, 165, 0, 0.1);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.2);
}

.belief-icon {
    font-size: 1.8rem;
    margin-right: 1rem;
    min-width: 40px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.about-community {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-top: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 99, 71, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    animation: communityGlow 3s ease-in-out infinite;
}

@keyframes communityGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 165, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 165, 0, 0.6); }
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(135deg, #FFF0F5, #F0F8FF);
}

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

.tokenomics-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #FFA500;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tokenomics-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tokenomics-card p {
    color: #666;
    font-size: 1rem;
}

/* Chart Section */
.chart {
    background: linear-gradient(135deg, #F0F8FF, #FFF0F5);
}

.chart-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.chart-placeholder {
    max-width: 600px;
    margin: 0 auto;
}

.chart-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.chart-placeholder h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.chart-placeholder p {
    color: #666;
    margin-bottom: 2rem;
}

/* Community Section */
.community {
    background: linear-gradient(135deg, #F0F8FF, #FFF0F5);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FFB6C1" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%2387CEEB" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23DDA0DD" opacity="0.1"/></svg>');
    animation: float-slow 20s ease-in-out infinite;
}

.community-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.community-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: cardAppear 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.community-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.community-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translateX(100%);
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.community-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.community-card h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF6B9D, #C44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.community-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1DA1F2, #0D8BD9);
    border: none;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}

.community-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(29, 161, 242, 0.4);
    background: linear-gradient(135deg, #0D8BD9, #1DA1F2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #FFE6F0, #E6F3FF);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.3), transparent);
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-section {
    margin-bottom: 0;
}

.footer-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF6B9D, #C44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtitle {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.footer-heading {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #FF6B9D;
    transform: translateX(5px);
}

.footer-social {
    text-align: center;
    margin-bottom: 2rem;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFA500, #FF6347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 99, 71, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 99, 71, 0.4);
}

.footer-bottom {
    text-align: center;
    color: #666;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin-bottom: 1.5rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .mascot-image {
        max-width: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .about-beliefs {
        padding: 1.5rem;
    }
    
    .chart-container {
        padding: 2rem 1rem;
    }
    
    .community-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
} 