* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #0b0b0b;
    color: white;
    overflow-x: hidden;
}

.image-header {
    background: url("header.png") center/cover no-repeat;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
}

.image-header h1 {
    font-size: 48px;
    letter-spacing: 2px;
}

.subtitle {
    margin-top: 10px;
    font-size: 18px;
}

.launch-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: black;
    color: white;
    text-decoration: none;
    border: 2px solid red;
    font-weight: bold;
    transition: 0.3s;
}

.launch-btn:hover {
    background: red;
    transform: scale(1.1);
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 10%;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 500px;
}

.hero h2 {
    font-size: 36px;
    color: #ff1e1e;
}

.hero p {
    margin-top: 20px;
    line-height: 1.6;
}

.warning-box {
    margin-top: 20px;
    padding: 15px;
    background: #1a0000;
    border: 1px solid red;
}

.hero-image img {
    width: 350px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@media (max-width: 1040px) {

    .hero {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 80px 20px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        margin-top: 40px;
    }

    .hero-image img {
        width: 250px;
    }

    .warning-box {
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
    }
}

.chart-section {
    text-align: center;
    padding: 100px 10%;
}

.video-chart {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-chart video {
    width: 100%;
    max-width: 900px;
    border: 2px solid #8b0000;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.6);
    border-radius: 10px;
}

.roadmap {
    padding: 100px 10%;
    text-align: center;
}

.roadmap ul {
    list-style: none;
    margin-top: 30px;
}

.roadmap li {
    margin: 15px 0;
    font-size: 20px;
}

footer {
    text-align: center;
    padding: 30px;
    background: black;
    color: #aaa;
}