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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 50%, #ffa07a 100%);
    color: #2c1810;
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.hero-mascot {
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
    animation: bounce 2s ease-in-out infinite;
}

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

h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 4px 4px 0px #ff6b35, 8px 8px 20px rgba(0,0,0,0.3);
    font-weight: 900;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #fff5e6;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.token-info {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 230, 0.95));
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 30px;
    margin: 30px 0;
    border: 3px solid #ff8c42;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    max-width: 700px;
    transform: translateZ(0);
}

.token-name {
    font-size: 2.8rem;
    background: linear-gradient(45deg, #ff6b35, #ff9a56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 15px;
}

.token-label {
    font-size: 1rem;
    color: #8b5a3c;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.token-ca {
    min-width: 300px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 18px;
    border-radius: 15px;
    word-break: break-all;
    margin-top: 10px;
    border: 2px solid #ff8c42;
    color: #2c1810;
    font-weight: 600;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    gap: 20px;
}

.stat-box {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #ff6b35;
}

.stat-label {
    font-size: 0.9rem;
    color: #8b5a3c;
    text-transform: uppercase;
    margin-top: 5px;
}

.gallery {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 60px;
    color: white;
    text-shadow: 4px 4px 0px #ff6b35;
    font-weight: 900;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.meme-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 230, 0.95));
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 25px;
    border: 3px solid #ff8c42;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.meme-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.5);
    border-color: #ff6b35;
}

.meme-img-container {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #ffd89b 0%, #ff9a56 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    border: 3px solid #ff8c42;
    box-shadow: inset 0 4px 12px rgba(0,0,0,0.1);
}

.meme-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meme-emoji {
    font-size: 3rem;
    animation: wiggle 5s ease-in-out infinite;
}

.meme-emoji img {
    width: 100%;
    object-fit: cover;
}
@keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.meme-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #ff6b35;
    font-weight: 800;
}

.meme-desc {
    font-size: 1rem;
    color: #5c3d2e;
    line-height: 1.6;
}

.meme-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b35, #ff9a56);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.4);
}

.cta-button {
    background: linear-gradient(45deg, #ff6b35, #ff9a56);
    color: white;
    padding: 20px 60px;
    border: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 900;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid white;
}

.cta-button:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.7);
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float-shape 20s infinite ease-in-out;
}

.shape:nth-child(1) { left: 10%; animation-delay: 0s; }
.shape:nth-child(2) { left: 30%; animation-delay: 5s; }
.shape:nth-child(3) { left: 50%; animation-delay: 10s; }
.shape:nth-child(4) { left: 70%; animation-delay: 15s; }
.shape:nth-child(5) { left: 90%; animation-delay: 7s; }

@keyframes float-shape {
    0%, 100% { transform: translateY(100vh) rotate(0deg); }
    50% { transform: translateY(-20vh) rotate(360deg); }
}

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

.social-btn {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 154, 86, 0.2), rgba(255, 107, 53, 0.2));
}

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

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 50px;
    color: white;
    text-shadow: 4px 4px 0px #ff6b35;
    font-weight: 900;
}

.about-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 230, 0.95));
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 50px;
    border: 3px solid #ff8c42;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}

.about-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2c1810;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 500;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 154, 86, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.2rem;
    color: #ff6b35;
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-text p {
    font-size: 0.95rem;
    color: #5c3d2e;
}

.roadmap-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff9a56 100%);
}

.roadmap-container {
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-status {
    text-align: center;
    margin-bottom: 50px;
}

.status-badge {
    display: inline-block;
    background: white;
    color: #ff6b35;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    animation: pulse 2s ease-in-out infinite;
}

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

.roadmap-timeline {
    position: relative;
    padding: 20px 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ffd700 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.roadmap-item:nth-child(odd) {
    flex-direction: row;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-marker {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.roadmap-item.active .roadmap-marker {
    animation: bounce 2s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
}

.roadmap-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin: 0 30px;
    max-width: 400px;
}

.roadmap-item:nth-child(odd) .roadmap-content {
    margin-left: auto;
    margin-right: 30px;
}

.roadmap-item:nth-child(even) .roadmap-content {
    margin-right: auto;
    margin-left: 30px;
}

.roadmap-content h3 {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
    font-weight: 800;
}

.roadmap-content p {
    font-size: 1rem;
    color: #5c3d2e;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.roadmap-content p::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff8c42;
    font-weight: bold;
}

.roadmap-item.completed .roadmap-content {
    border: 3px solid #4caf50;
}

.roadmap-item.active .roadmap-content {
    border: 3px solid #ffd700;
}

.roadmap-item.upcoming .roadmap-content {
    opacity: 0.7;
    border: 3px solid rgba(255, 140, 66, 0.4);
}

.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: linear-gradient(45deg, #ff6b35, #ff9a56);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid white;
}

.load-more-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

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

@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 40px;
    }

    .roadmap-item,
    .roadmap-item:nth-child(even) {
        flex-direction: row !important;
    }

    .roadmap-marker {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin: 0;
    }

    .roadmap-content,
    .roadmap-item:nth-child(odd) .roadmap-content,
    .roadmap-item:nth-child(even) .roadmap-content {
        margin-left: 20px !important;
        margin-right: 0 !important;
        max-width: 100%;
    }
}        