/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px;
}

.skip-button {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skip-button:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Hide main content initially */
#main-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

#main-content.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive Preloader */
@media (max-width: 768px) {
    .preloader-overlay {
        padding: 20px;
    }
    
    .skip-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .preloader-overlay {
        padding: 15px;
    }
    
    .skip-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

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

body {
    font-family: 'Fredoka', cursive;
    background: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 25%, #03A9F4 50%, #0288D1 75%, #0277BD 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
    z-index: 100;
    flex-wrap: wrap;
}

.header h1 {
    color: white;
}

.center-content h1 {
    color: white;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C5F7C;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Fredoka', cursive;
}

.powered-by {
    font-size: 0.8rem;
    color: #2C5F7C;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.navigation {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-btn {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 3px solid #2C5F7C;
    box-shadow: 3px 3px 0px #000000;
    font-family: 'Fredoka', cursive;
}

.nav-btn.active {
    background-color: #2C5F7C;
    color: white;
    box-shadow: 4px 4px 0px #000000;
}

.nav-btn:not(.active) {
    color: #2C5F7C;
    background-color: rgba(255, 255, 255, 0.8);
    border-color: #2C5F7C;
}

.nav-btn:hover {
    background-color: #2C5F7C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 5px 5px 0px #000000;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: #2C5F7C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        3px 3px 0px #000000;
    border: 3px solid #000000;
}

.social-icon:hover {
    background-color: #1E3A52;
    transform: scale(1.1);
    box-shadow: 
        4px 4px 0px #000000;
}

/* Main Content */
.main-content {
    position: relative;
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 0 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Fun Element */
.fun-element {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 80px;
    height: auto;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

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

/* Character Section */
.character-section {
    flex: 0 0 auto;
    z-index: 50;
}

.character-image {
    max-width: 400px;
    max-height: 500px;
    width: auto;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease;
}

.character-image:hover {
    transform: scale(1.05);
}

/* Center Content */
.center-content {
    flex: 1;
    text-align: center;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 60px;
}

.subtitle {
    font-size: 1.5rem;
    color: #2C5F7C;
    margin-bottom: 20px;
    font-weight: 400;
}

.main-title {
    font-size: 6rem;
    font-weight: 700;
    color: #2C5F7C;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-family: 'Fredoka', cursive;
}

/* Platform Grid */
.platform-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

.platform-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #FFD700;
    border-radius: 20px;
    text-decoration: none;
    color: #2C5F7C;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.2),
        3px 3px 0px #000000;
    border: 2px solid #000000;
    min-width: 140px;
    justify-content: center;
    font-family: 'Fredoka', cursive;
    white-space: nowrap;
}

.platform-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.3),
        6px 6px 0px #000000;
    background-color: #FFC107;
}

.platform-btn img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* Font Awesome Icons for Platform Buttons */
.platform-btn i {
    font-size: 1.5rem;
    color: #2C5F7C;
}

/* Font Awesome Icons Styling */
.card-icon i {
    font-size: 3rem;
    color: #2C5F7C;
}

.feature-icon i {
    font-size: 3rem;
    color: #2C5F7C;
}

.social-icon i {
    font-size: 1.5rem;
    color: white;
}

.community-btn i {
    font-size: 1.2rem;
    margin-right: 8px;
}

/* New Sections Styles */
.section {
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 25%, #03A9F4 50%, #0288D1 75%, #0277BD 100%);
}

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

.section-title {
    font-size: 4rem;
    font-weight: 700;
    color: #2C5F7C;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    font-family: 'Fredoka', cursive;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #2C5F7C;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.8;
}

/* Tokenomics Section */
.tokenomics-section {
    background: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 25%, #03A9F4 50%, #0288D1 75%, #0277BD 100%);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        5px 5px 0px #000000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #000000;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.2),
        8px 8px 0px #000000;
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 3rem;
    color: #2C5F7C;
}

.tokenomics-card h3 {
    font-size: 1.5rem;
    color: #2C5F7C;
    margin-bottom: 15px;
}

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

.tokenomics-chart {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.chart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.chart-segment {
    background: #FFD700;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    color: #2C5F7C;
    min-width: 120px;
    transition: transform 0.3s ease;
    box-shadow: 4px 4px 0px #000000;
    border: 3px solid #000000;
}

.chart-segment:hover {
    transform: scale(1.05);
    box-shadow: 6px 6px 0px #000000;
}

.chart-liquidity { 
    background: linear-gradient(45deg, #4FC3F7, #29B6F6); 
    color: white;
}
.chart-community { 
    background: linear-gradient(45deg, #66BB6A, #4CAF50); 
    color: white;
}
.chart-marketing { 
    background: linear-gradient(45deg, #FF7043, #FF5722); 
    color: white;
}
.chart-team { 
    background: linear-gradient(45deg, #AB47BC, #9C27B0); 
    color: white;
}
.chart-development { 
    background: linear-gradient(45deg, #FFCA28, #FFC107); 
    color: #2C5F7C;
}

.transaction-link {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.tx-btn {
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    background: linear-gradient(45deg, #00D4AA, #00BFA5);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.2),
        5px 5px 0px #000000;
    border: 3px solid #000000;
}

.tx-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(0,0,0,0.3),
        8px 8px 0px #000000;
    background: linear-gradient(45deg, #00BFA5, #00ACC1);
}

/* Community Section */
.community-section {
    background: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 25%, #03A9F4 50%, #0288D1 75%, #0277BD 100%);
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        5px 5px 0px #000000;
    transition: transform 0.3s ease;
    border: 3px solid #000000;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.15),
        8px 8px 0px #000000;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2C5F7C;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        5px 5px 0px #000000;
    transition: transform 0.3s ease;
    border: 3px solid #000000;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.2),
        8px 8px 0px #000000;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 3rem;
    color: #2C5F7C;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2C5F7C;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

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

.community-btn {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.2),
        4px 4px 0px #000000;
    border: 3px solid #000000;
    font-family: 'Fredoka', cursive;
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-btn.telegram {
    background: linear-gradient(45deg, #0088cc, #229ED9);
    color: white;
}

.community-btn.twitter {
    background: linear-gradient(45deg, #1DA1F2, #0d8bd9);
    color: white;
}

.community-btn.discord {
    background: linear-gradient(45deg, #5865F2, #4752C4);
    color: white;
}

.community-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.3),
        6px 6px 0px #000000;
}

/* Community Grid and Cards */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.community-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        6px 6px 0px #000000;
    border: 3px solid #000000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.community-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.2),
        8px 8px 0px #000000;
}

.community-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.5s;
}

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

.community-card .card-icon {
    margin-bottom: 25px;
}

.community-card .card-icon i {
    font-size: 4rem;
    color: #2C5F7C;
    transition: transform 0.3s ease;
}

.community-card:hover .card-icon i {
    transform: scale(1.1);
}

.community-card h3 {
    font-size: 1.8rem;
    color: #2C5F7C;
    margin-bottom: 15px;
    font-family: 'Fredoka', cursive;
    font-weight: 600;
}

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

.community-link {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.2),
        3px 3px 0px #000000;
    border: 2px solid #000000;
    font-family: 'Fredoka', cursive;
    text-transform: uppercase;
}

.community-link:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.3),
        5px 5px 0px #000000;
    background: linear-gradient(45deg, #764ba2, #667eea);
}

/* Special Info Card Styles */
.info-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 223, 0, 0.95)) !important;
    border: 3px solid #FFD700 !important;
    position: relative;
    overflow: hidden;
}

.info-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);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.info-card .card-icon i {
    color: #8B4513 !important;
    animation: bounce 2s infinite;
}

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

.info-card h3 {
    color: #8B4513 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.info-card p {
    color: #5D4E37 !important;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px !important;
}

.info-highlight {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 2px solid #000;
    display: inline-block;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 4px 15px rgba(0,0,0,0.2), 0 0 5px rgba(255,107,107,0.3); }
    to { box-shadow: 0 4px 15px rgba(0,0,0,0.2), 0 0 20px rgba(78,205,196,0.5); }
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 25%, #03A9F4 50%, #0288D1 75%, #0277BD 100%);
    overflow: hidden;
}

/* Enhanced Gallery Grid */
.gallery-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

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

/* Floating Ticker */
.floating-ticker {
    position: relative;
    height: 100px;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.floating-ticker .ticker-track {
    display: flex;
    animation: floatingTicker 25s linear infinite;
    height: 100%;
}

.floating-ticker .ticker-item {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    margin-right: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.floating-ticker .ticker-item:hover {
    transform: scale(1.1);
    z-index: 10;
}

.floating-ticker .ticker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floatingTicker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Background Elements */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.building {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
}

.building-1 {
    width: 150px;
    height: 300px;
    bottom: 0;
    right: 100px;
    clip-path: polygon(0 100%, 0 20%, 50% 0, 100% 20%, 100% 100%);
}

.building-2 {
    width: 120px;
    height: 250px;
    bottom: 0;
    right: 280px;
    clip-path: polygon(0 100%, 0 30%, 30% 0, 70% 0, 100% 30%, 100% 100%);
}

.building-3 {
    width: 100px;
    height: 200px;
    bottom: 0;
    right: 420px;
    clip-path: polygon(0 100%, 0 40%, 50% 0, 100% 40%, 100% 100%);
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: bottom;
}

/* Sparkles Animation */
.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    color: rgba(255,255,255,0.8);
    font-size: 1.5rem;
    animation: sparkleAnimation 3s infinite ease-in-out;
}

.sparkle-1 { top: 15%; left: 20%; animation-delay: 0s; }
.sparkle-2 { top: 25%; right: 25%; animation-delay: 0.5s; }
.sparkle-3 { top: 45%; left: 15%; animation-delay: 1s; }
.sparkle-4 { top: 60%; right: 20%; animation-delay: 1.5s; }
.sparkle-5 { top: 75%; left: 30%; animation-delay: 2s; }
.sparkle-6 { top: 35%; right: 35%; animation-delay: 2.5s; }

@keyframes sparkleAnimation {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-title {
        font-size: 4rem;
    }
    
    .main-content {
        padding: 0 40px;
    }
    
    .character-image {
        max-width: 300px;
        max-height: 400px;
    }
    
    .center-content {
        padding-left: 40px;
    }
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .main-content {
        padding: 0 30px;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
    
    .character-image {
        max-width: 280px;
        max-height: 350px;
    }
    
    .platform-grid {
        gap: 15px;
    }
    
    .platform-row {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .platform-btn {
        min-width: 140px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .header {
        padding: 15px 30px;
    }
    
    .navigation {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        gap: 0;
    }
    
    .logo-section {
        flex: 1;
    }
    
    .logo {
        font-size: 2.5rem;
        font-weight: 700;
    }
    
    .powered-by {
        display: none;
    }
    
    /* Hide navigation on mobile */
    .navigation {
        display: none;
    }
    
    .social-icons {
        gap: 15px;
        flex-shrink: 0;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .main-content {
        flex-direction: column;
        padding: 20px;
        justify-content: center;
        height: auto;
        min-height: calc(100vh - 100px);
        margin-top: 20px;
    }
    
    .character-section {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .character-image {
        max-width: 250px;
        max-height: 300px;
    }
    
    .center-content {
        padding-left: 0;
        width: 100%;
    }
    
    .fun-element {
        width: 60px;
        top: 15%;
        right: 5%;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .platform-grid {
        gap: 10px;
        margin-top: 20px;
    }
    
    .platform-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        max-width: 100%;
    }
    
    .platform-btn {
        width: auto;
        min-width: 110px;
        font-size: 0.7rem;
        padding: 8px 12px;
        border-radius: 15px;
        gap: 6px;
        border-width: 2px;
        box-shadow: 
            0 3px 8px rgba(0,0,0,0.15),
            2px 2px 0px #000000;
    }
    
    .platform-btn i {
        font-size: 0.9rem;
    }
    
    .platform-btn span {
        font-size: 0.65rem;
        font-weight: 700;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .community-card {
        padding: 30px 20px;
    }
    
    .community-card .card-icon i {
        font-size: 3rem;
    }
    
    .community-card h3 {
        font-size: 1.5rem;
    }
    
    .community-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .info-card p {
        font-size: 0.95rem !important;
        margin-bottom: 15px !important;
    }
    
    .info-highlight {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .powered-by {
        font-size: 0.7rem;
    }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .section-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .tokenomics-grid,
    .community-stats,
    .community-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tokenomics-card,
    .stat-card,
    .feature-card {
        padding: 20px;
    }
    
    .card-icon i,
    .feature-icon i {
        font-size: 2.5rem;
    }
    
    .community-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .community-btn {
        width: 200px;
        text-align: center;
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .community-btn i {
        font-size: 1rem;
    }
    
    .chart-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .chart-segment {
        min-width: 150px;
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .ticker-image {
        width: 200px;
        height: 180px;
    }
    
    .ticker-container {
        margin: 20px 0;
    }
    
    .tx-btn {
        font-size: 1rem;
        padding: 15px 25px;
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .header {
        padding: 15px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    /* Ensure navigation stays hidden */
    .navigation {
        display: none !important;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .character-image {
        max-width: 200px;
        max-height: 250px;
    }
    
    .platform-btn {
        min-width: 100px;
        font-size: 0.6rem;
        padding: 6px 10px;
        border-radius: 12px;
        gap: 4px;
    }
    
    .platform-btn i {
        font-size: 0.8rem;
    }
    
    .platform-btn span {
        font-size: 0.55rem;
        font-weight: 700;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        padding: 15px;
    }
    
    .gallery-item {
        border-radius: 10px;
    }
    
    .gallery-overlay i {
        font-size: 2rem;
    }
    
    .floating-ticker {
        height: 80px;
    }
    
    .floating-ticker .ticker-item {
        width: 80px;
        height: 80px;
        margin-right: 8px;
    }
    
    .section {
        padding: 60px 0;
    }
}
