.banner {
    overflow: visible;
    background-color: orange;
    opacity: 0.7;
    color: black;
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;
    z-index: 99;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #0e0e0e;
    color: #ffffff;
    line-height: 1.6;
}

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



/* HERO */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.9)
    );
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero h2 {
    margin-top: 10px;
    font-size: 2rem;
}

.hero p {
    margin: 20px 0 30px;
    max-width: 600px;
    color: #dcdcdc;
}

.hoc-logo {
    width: 300px;
}

/* BUTTONS */

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: #e63946;
    color: #fff;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #c72f3b;
}

/* SECTIONS */

section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
}

/* ABOUT */

.about {
    background: #121212;
}

.about p {
    max-width: 700px;
    color: #cccccc;
}

/* PLATFORMS */

.platforms {
    background: #0f0f0f;
    text-align: center;
}

.platform-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-card {
    border: 1px solid #e63946;
    padding: 40px 60px;
    border-radius: 8px;
    min-width: 260px;
    background: rgba(0,0,0,0.6);
    font-size: 1.2rem;
}

/* WHY */

.why {
    background: linear-gradient(135deg, #0f0f0f, #1a0000);
}

.why-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.why ul {
    list-style: none;
}

.why li {
    margin-bottom: 12px;
    color: #dddddd;
}

/* CTA */

.cta {
    text-align: center;
    background: radial-gradient(circle, #300000, #0a0a0a);
}

.cta p {
    margin-bottom: 30px;
    color: #cccccc;
}




