* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

nav ul li a:hover {
    color: #ffffff;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: drift linear infinite;
    pointer-events: none;
}

@keyframes drift {
    0% { transform: translate(0, 0); opacity: 0.8; }
    50% { opacity: 0.3; }
    100% { transform: translate(100px, 100px); opacity: 0; }
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    padding: 2rem;
}

.profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 2rem;
    border: 3px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
    transition: transform 0.5s ease, border-color 0.5s ease;
    animation: float 5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

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

.hero-content:hover .profile-img {
    border-color: #ffffff;
    transform: scale(1.05);
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.4rem;
    min-height: 2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

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

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-links img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.about, .market-data, .features, .airdrop-section, .community-section, .crypto-insights {
    padding: 5rem 5%;
    background-color: #0a0a0a;
    position: relative;
}

.about h2, .market-data h2, .crypto-insights h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.about h2::after, .market-data h2::after, .crypto-insights h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.content-wrapper {
    max-width: 800px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.about p {
    max-width: 600px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 auto 1.5rem;
    font-weight: 300;
}

.market-data {
    background-color: #121212;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.crypto-ticker {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ticker-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    min-width: 150px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.ticker-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.ticker-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
    font-weight: 600;
}

.ticker-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.up {
    color: #2ecc71;
}

.down {
    color: #e74c3c;
}

.price-up {
    animation: priceUp 0.5s ease;
}

.price-down {
    animation: priceDown 0.5s ease;
}

@keyframes priceUp {
    0% { box-shadow: 0 0 10px rgba(46, 204, 113, 0); }
    50% { box-shadow: 0 0 10px rgba(46, 204, 113, 0.5); }
    100% { box-shadow: 0 0 10px rgba(46, 204, 113, 0); }
}

@keyframes priceDown {
    0% { box-shadow: 0 0 10px rgba(231, 76, 60, 0); }
    50% { box-shadow: 0 0 10px rgba(231, 76, 60, 0.5); }
    100% { box-shadow: 0 0 10px rgba(231, 76, 60, 0); }
}

.mini-chart {
    height: 40px;
    margin-top: 0.5rem;
}

.data-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1.5rem;
    font-style: italic;
    text-align: center;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.feature-card {
    background-color: #121212;
    border-radius: 10px;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2ecc71, #3498db);
}

.feature-card:hover {
    background-color: #161616;
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.external-link {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.5rem;
    display: inline-block;
}

.feature-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.status {
    font-size: 0.85rem;
    color: #2ecc71;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.feature-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.crypto-insights {
    background: linear-gradient(135deg, #0a0a0a 0%, #121212 100%);
    padding: 5rem 5%;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.insight-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.insight-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.insight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 600;
}

.insight-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

footer {
    background-color: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 5% 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
    display: inline-block;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-social a:hover {
    color: #ffffff;
    transform: translateX(3px);
    display: inline-block;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    header {
        padding: 1rem 3%;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 55px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }

    nav.active ul {
        display: flex;
    }

    nav ul li {
        margin: 0.8rem 0;
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 0.8rem 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .profile-img {
        width: 140px;
        height: 140px;
    }

    .about h2, .market-data h2, .crypto-insights h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links, .footer-social {
        align-items: center;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .social-links img {
        width: 18px;
        height: 18px;
    }

    .about p {
        font-size: 1rem;
    }

    .ticker-item {
        min-width: 120px;
    }

    .ticker-item h3 {
        font-size: 1rem;
    }

    .ticker-item p {
        font-size: 0.85rem;
    }
}
