body {
    margin: 0;
    font-family: 'Comic Sans MS', 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #ffe259, #ffa751);
    color: #333;
}
header {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
header h1 {
    margin: 0;
    font-size: 3em;
    color: #ffd700;
    text-shadow: 2px 2px #000;
    font-weight: bold;
}
header p {
    margin: 10px 0 0;
    font-style: italic;
    color: #ddd;
}
nav {
    background: #ff5733;
    text-align: center;
    padding: 10px 0;
    font-size: 1.2em;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
nav li {
    display: inline-block;
    margin: 0 20px;
}
nav a {
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: transform 0.3s, color 0.3s;
}
nav a:hover {
    color: #ffd700;
    transform: scale(1.1);
}
.hero {
    text-align: center;
    padding: 40px 10px;
    background: #ff5733;
    color: #fff;
    border-bottom: 5px solid #333;
}
.hero img {
    max-width: 350px;
    border: 5px dashed #ffd700;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
}
.hero a {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.3s;
}
.hero a:hover {
    transform: rotate(-5deg) scale(1.1);
}
section {
    padding: 30px 15px;
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #ff5733;
    text-shadow: 2px 2px #ffd700;
    font-weight: bold;
}
section p,
section ul,
section ol {
    font-size: 1.1em;
    color: #333;
    line-height: 1.8;
}
section ul {
    list-style: square;
    padding-left: 20px;
}
section ul li {
    margin-bottom: 10px;
}
.social-links {
    text-align: center;
    margin-top: 20px;
}
.social-links a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    color: #ff5733;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}
.social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 1em;
    border-top: 5px solid #ff5733;
}
footer p {
    margin: 0;
    font-style: italic;
}
/* Tokenomics Grid */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.tokenomics-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tokenomics-item h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #ff5733;
    font-weight: bold;
}

.tokenomics-item p {
    font-size: 1em;
    color: #333;
}

.tokenomics-item a {
    text-decoration: none;
    font-weight: bold;
    color: #005bbb;
    transition: color 0.3s;
}

.tokenomics-item a:hover {
    color: #ffa751;
}

.tokenomics-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
