body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.main-content {
    text-align: center;
    padding: 40px 20px;
}

.main-steak-img {
    max-width: 300px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.subtitle {
    font-size: 1.2em;
    color: #cccccc;
    margin-bottom: 40px;
}

.tokenomics {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.tokenomics h2 {
    color: #ff6b6b;
    margin-bottom: 30px;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.tokenomics-item {
    background-color: #333333;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.tokenomics-item:hover {
    transform: translateY(-5px);
}

.tokenomics-item h3 {
    color: #ff6b6b;
    font-size: 2em;
    margin: 0 0 10px 0;
}

.tokenomics-item p {
    color: #cccccc;
    margin: 0;
}

.roadmap {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.roadmap h2 {
    color: #ff6b6b;
    margin-bottom: 30px;
}

.roadmap-list {
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-item {
    background-color: #333333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.roadmap-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: not-allowed;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #666;
    border-radius: 4px;
    background-color: #333;
    position: relative;
}

.roadmap-item input[type="checkbox"]:checked {
    background-color: #2E7D32;
    border-color: #2E7D32;
}

.roadmap-item input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.roadmap-item label {
    color: #cccccc;
    font-size: 1.1em;
    cursor: not-allowed;
}

.team {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.team h2 {
    color: #ff6b6b;
    margin-bottom: 30px;
}

.team-intro {
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.team-member p {
    color: #cccccc;
    font-size: 1.2em;
    margin: 0;
}

@media (max-width: 768px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .main-steak-img {
        max-width: 200px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
    }
}
