/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Manga-inspired color palette */
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #f9ca24;
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --bg-card: #0f0f23;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --text-accent: #ff6b6b;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    --gradient-3: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Simple Icons */
.icon {
    display: inline-block;
    vertical-align: middle;
}

.icon-coins::before {
    content: '';
    background-image: url('../assets/mangacoin.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 1em;
    height: 1em;
    display: inline-block;
}

.icon-bars::before {
    content: '≡';
}

.icon-exchange {
    content: '';
    background-image: url('../assets/shido.svg');
    background-size: contain;
    background-repeat: no-repeat;
    align-items: center;
    width: 50px;
    height: 50px;
}

.icon-shidokit {
    content: '';
    background-image: url('../assets/shidokid.png');
    background-size: contain;
    background-repeat: no-repeat;
    align-items: center;
    width: 50px;
    height: 50px;
}

.icon-chart {
    content: '';
    background-image: url('../assets/blockchain-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    align-items: center;
    width: 45px;
    height: 45px;
}

.icon-users::before {
    content: '👥';
}

.icon-vote::before {
    content: '🗳️';
}

.icon-star::before {
    content: '⭐';
}

.icon-robot::before {
    content: '🤖';
}

.icon-heart::before {
    content: '❤️';
}

.icon-ninja {
    content: '';
    background-image: url('../assets/mangacoin.png');
    background-size: contain;
    background-repeat: no-repeat;
    align-items: center;
    width: 100px;
    height: 100px;
}

.icon-dragon {
    content: '';
    background-image: url('../assets/chick.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.icon-search::before {
    content: '🔍';
}

.icon-pool::before {
    content: '🏊';
}

.icon-telegram {
    content: '';
    background-image: url('../assets/Telegram_2019_Logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    align-items: center;
    width: 45px;
    height: 45px;
}

.icon-twitter {
    content: '';
    background-image: url('../assets/X_icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    align-items: center;
    width: 45px;
    height: 45px;
}

.icon-copy::before {
    content: '📋';
}

.icon-check::before {
    content: '✅';
}

/* Typography */
.section__title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.nav__logo .icon {
    font-size: 2rem;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero__stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat__label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Manga Character Animation */
.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.manga-character {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.character-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.character-body {
    width: 150px;
    height: 180px;
    background: var(--gradient-3);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
    top: 20px;
    left: 25px;
    box-shadow: var(--shadow);
}

.character-face {
    width: 100px;
    height: 100px;
    background: #ffd700;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.eyes {
    display: flex;
    gap: 20px;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.eye {
    width: 15px;
    height: 15px;
    background: #333;
    border-radius: 50%;
    animation: blink 3s infinite;
}

.mouth {
    width: 30px;
    height: 15px;
    border: 3px solid #333;
    border-top: none;
    border-radius: 0 0 50px 50px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.speech-bubble {
    position: absolute;
    top: -30px;
    right: -80px;
    background: white;
    color: #333;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.about__card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.about__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.card__icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card__icon .icon {
    font-size: 3rem;
}

.card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card__description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Tokenomics Section */
.tokenomics {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.tokenomics__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.chart__container {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.tokenomics__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.token__details {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.token__details h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.detail__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.label {
    color: var(--text-secondary);
    font-weight: 600;
}

.value {
    color: var(--text-primary);
    font-weight: 700;
}

.contract-address {
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    word-break: break-all;
}

.contract-address:hover {
    color: var(--primary-color);
}

.contract-address i {
    margin-left: 0.5rem;
    opacity: 0.7;
}

.distribution__legend {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.distribution__legend h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.legend__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legend__item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legend__color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend__label {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team__member {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.team__member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
}

.member__avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.member__avatar .icon {
    font-size: 2.5rem;
}

.member__name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.member__role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member__description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Links Section */
.links {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.links__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.link__card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(249, 202, 36, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

.link__icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.link__icon .icon {
    font-size: 2rem;
}

.link__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.link__description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer__logo .icon {
    font-size: 2rem;
}

.footer__description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer__links h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer__links ul {
    list-style: none;
}

.footer__links ul li {
    margin-bottom: 0.5rem;
}

.footer__links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer__links ul li a:hover {
    color: var(--primary-color);
}

.footer__contact h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social__links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social__links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social__links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__list {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .nav__toggle {
        display: block;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .tokenomics__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero__buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__stats {
        justify-content: center;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about__grid {
        grid-template-columns: 1fr;
    }

    .links__grid {
        grid-template-columns: 1fr;
    }

    .team__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .about__card,
    .team__member,
    .token__details,
    .distribution__legend {
        padding: 1.5rem;
    }

    .chart__container {
        padding: 1rem;
    }

    .contract-address {
        font-size: 0.8rem;
    }
}