.hero {
    min-height: 100vh;
    background: #0a0a0a;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

    .hero h1 {
        font-size: 64px;
        margin-bottom: 20px;
        color: #ff3b30;
    }

    .hero p {
        max-width: 700px;
        font-size: 20px;
        line-height: 1.7;
        margin-bottom: 18px;
        color: #d6d6d6;
    }

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 36px;
    background: #ff3b30;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: .3s;
}

    .btn:hover {
        background: #ff5b4d;
    }
