@font-face {
    font-family: 'YZY Font';
    src: url("684e5662d94c69e1-s.p.woff2") format('woff2');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'YZY Font', monospace;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

.logo {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo svg {
    width: 100px;
    height: 100px;
}

.actions {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.action {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.action.right {
    text-align: right;
}

.description {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: left;
    max-width: 400px;
}

.features {
    margin-bottom: 35px;
    text-align: left;
}

.feature {
    font-size: 14px;
    font-weight: 400;
    margin-right: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature.disabled {
    color: #cccccc;
    font-weight: 300;
}

.contract {
    text-align: left;
    margin-top: 50px;
    margin-bottom: 50px;
}

.contract-label {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-address {
    font-size: 11px;
    font-weight: 300;
    font-family: 'YZY Font', monospace;
    color: #666666;
    word-break: break-all;
    line-height: 1.3;
}

.tokenomics {
    margin-bottom: 50px;
    text-align: left;
}

.tokenomics-header {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.tokenomics-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.tokenomics-percentage {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tokenomics-label {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tokenomics-vesting {
    font-size: 10px;
    font-weight: 300;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq {
    text-align: left;
    margin-top: 50px;
    margin-bottom: 50px;
}

.faq-header {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.faq-question {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
}

.faq-answer {
    font-size: 11px;
    font-weight: 300;
    color: #666666;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: none;
    margin-top: 8px;
    padding-left: 10px;
    border-left: 2px solid #f0f0f0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    color: #333333;
}

.disclaimer {
    text-align: left;
    margin-bottom: 40px;
}

.disclaimer-text {
    font-size: 11px;
    font-weight: 300;
    color: #999999;
    line-height: 1.8;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}

.social-icon {
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    
    .container {
        max-width: 100%;
    }
    
    .logo svg {
        width: 80px;
        height: 80px;
    }
    
    .description {
        font-size: 12px;
        max-width: 100%;
    }
    
    .action {
        font-size: 14px;
    }
    
    .feature {
        font-size: 12px;
        margin-right: 12px;
    }
    
    .tokenomics-header {
        font-size: 14px;
    }
    
    .faq-header {
        font-size: 14px;
    }
    
    .disclaimer-text {
        font-size: 10px;
    }
    
    .social-media {
        gap: 20px;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
}
