body{
    background: linear-gradient(180deg, #09040d 0%, #130817 45%, #0a1224 100%);
    color: #f5f1f7;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.navbar{
    background: rgba(18, 6, 20, 0.95);
    box-shadow: 0 2px 18px rgba(0,0,0,.45);
    border-bottom: 1px solid rgba(170, 20, 40, 0.35);
}

.navbar-brand,
.nav-link{
    color: #f8f3f8 !important;
    font-weight: bold;
}

.navbar-brand{
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.navbar-brand img{
    height: 42px;
    width: auto;
    margin-right: 10px;
    filter: drop-shadow(0 0 6px rgba(131, 232, 255, 0.35));
}

.nav-link{
    margin-left: 10px;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav-link:hover{
    color: #8ee9ff !important;
    text-shadow: 0 0 8px rgba(142, 233, 255, 0.6);
}

/* IMPORTANT: removes the blue gap */
section{
    padding: 0;
    margin: 0;
}

.hero-slide{
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-slide::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:
        linear-gradient(rgba(10, 0, 15, 0.55), rgba(5, 8, 20, 0.72)),
        radial-gradient(circle at center, rgba(120, 0, 30, 0.18), rgba(0, 0, 0, 0.45));
}

.hero-content{
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 20px;
    text-align: center;
}

.hero-content h1{
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(1.6rem, 4vw, 3rem);
    color: #8ee9ff;
    margin-bottom: 20px;
    line-height: 1.5;
    text-shadow:
        0 0 8px rgba(142,233,255,0.55),
        0 0 18px rgba(142,233,255,0.25),
        0 0 10px rgba(120,0,30,0.35);
}

.hero-content p{
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #f3dce4;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
}

.btn-retro{
    background: linear-gradient(180deg, #b3122c 0%, #7e0d22 100%);
    color: white;
    padding: 12px 28px;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    text-decoration: none;
    box-shadow:
        0 0 12px rgba(179,18,44,.65),
        0 0 24px rgba(90, 8, 30, 0.35);
    transition: all 0.25s ease;
}

.btn-retro:hover{
    background: linear-gradient(180deg, #d41739 0%, #94112b 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow:
        0 0 14px rgba(212,23,57,.8),
        0 0 28px rgba(142,233,255,0.18);
}

.carousel{
    margin: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    filter: drop-shadow(0 0 6px rgba(142,233,255,0.45));
}

footer{
    background: rgba(12, 4, 16, 0.96);
    color: #f0e8f2;
    border-top: 1px solid rgba(170, 20, 40, 0.35);
}

footer p{
    margin: 0;
    letter-spacing: 0.5px;
}

@media(max-width:768px){
    .hero-slide{
        min-height: 70vh;
    }

    .hero-content h1{
        font-size: 1.3rem;
    }

    .hero-content p{
        font-size: 1rem;
    }

    .nav-link{
        margin-left: 0;
        padding: 8px 0;
    }

    .navbar-brand img{
        height: 36px;
    }
}
.page-banner{
    background:transparent;
    text-align:center;
    }
    
    .page-title{
    font-family:'Press Start 2P', cursive;
    font-size:clamp(1.5rem,4vw,2.5rem);
    color:#8ee9ff;
    line-height:1.5;
    margin-bottom:20px;
    text-shadow:0 0 8px rgba(142,233,255,.5);
    }
    
    .page-subtitle{
    color:#f3dce4;
    max-width:700px;
    margin:auto;
    }
    
    .content-section{
    padding:70px 0;
    }
    
    .info-box{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(170,20,40,.28);
    border-radius:14px;
    padding:2rem;
    height:100%;
    }
    
    .info-box h2,
    .info-box h3{
    color:#8ee9ff;
    }
    
    .about-page-image{
    width:100%;
    object-fit:cover;
    border:1px solid rgba(170,20,40,.25);
    }
    
    .feature-icon{
    font-size:2.2rem;
    color:#c5163a;
    }