/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: bold;
    margin-bottom: 20px;
}

ul {
    list-style: none;
}

ul li {
    margin: 10px 0;
    font-size: 1rem;
    color: #555;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Example gradient colors */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}


.hero h1 {
    font-size: 4rem;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.5rem;
    max-width: 600px;
    margin-top: 20px;
}

/* Content Section */
.content {
    padding: 60px 20px;
}

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

/* Overview Section */
.overview {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.overview h2 {
    font-size: 2.4rem;
}

.overview p {
    font-size: 1.1rem;
    color: #555;
}

/* Key Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 40px 20px;
}

.feature-item {
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Tokenomics Section */
.tokenomics {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.tokenomics h2 {
    font-size: 2.4rem;
}

.tokenomics p {
    font-size: 1.1rem;
    color: #555;
}

.tokenomics ul li {
    font-size: 1.1rem;
    color: #555;
}

/* Market Status Section */
.market-status {
    padding: 40px;
    background-color: #fafafa;
    border-radius: 10px;
    margin-bottom: 40px;
}

.market-status h2 {
    font-size: 2.4rem;
}

.market-status ul li {
    font-size: 1.1rem;
    color: #555;
    margin: 8px 0;
}

/* Services Section */
.services {
    padding: 40px 20px;
}

.service-item {
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
    color: #666;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
.footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

.footer p {
    margin: 0;
    font-size: 1rem;
}
