body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: white;
    margin: 0;
    padding: 0;
}

/* HERO */
.parallax {
    background-image: url('../img/banner.webp');
    height: 100vh;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.parallax .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    background: rgba(0,0,0,0.6);
    z-index: 5;
}

.parallax .content {
    position: relative;
    z-index: 10;
    padding: 0 15px;
}

h1 {
    font-weight: 700;
    text-shadow: 0 0 15px #ff003c;
}
ol li::marker {
    font-size: 2em;
}

.cta-button {
    background: #ff003c;
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 0 12px #ff003c;
    display: inline-block; 
    max-width: 100%; 
    box-sizing: border-box; 
}

.cta-button:hover {
    background: #ff2b5a;
    box-shadow: 0 0 22px #ff003c;
    transform: scale(1.05);
}

/* FEATURES */
.feature h3 {
    color: #ff003c;
    text-shadow: 0 0 8px #ff003c;
}

.feature p {
    opacity: 0.9;
}

/* DOWNLOAD */
.download-buttons img {
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255,0,60,0.4);
    transition: 0.3s ease;
}
.download-buttons img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(255,0,60,0.7);
}

/* Head */

.header-logo{
    background: #070707;
    border-bottom: 1px solid rgba(255,0,60,0.25); 
}

/* FOOTER SEXY */
.footer-sexy {
    background: #070707;
    border-top: 1px solid rgba(255,0,60,0.25);
    text-align: center;
}

.footer-tagline {
    font-size: 1.15rem;
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-link {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    opacity: 0.8;
    transition: 0.3s ease;
}

.footer-link:hover {
    color: #ff003c;
    opacity: 1;
    text-shadow: 0 0 6px #ff003c;
}

.social-icon {
    color: white;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #ff003c;
    transform: scale(1.2);
    text-shadow: 0 0 8px #ff003c;
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.65;
    margin-top: 10px;
}