body {
    background-color: #080808;
    color: white;
    font-family: 'Jost', sans-serif;
    overflow-x: hidden;
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-logo h2 {
    color: #2b57ff;
    font-family: 'Bebas Neue';
    font-size: 2.2rem;
    margin: 0;
}

.header-menu-center ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.header-menu-center a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
}

.header-menu-center a:hover {
    color: #2b57ff;
}

.hero-section {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1a2a6c 0%, #080808 70%);
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: 2px;
    background: linear-gradient(to bottom, #ffffff, #2b57ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.cta-btn-primary {
    display: inline-block;
    background-color: #2b57ff;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1.5px;
    transition: 0.4s;
    box-shadow: 0 0 20px rgba(43, 87, 255, 0.4);
}

.cta-btn-primary:hover {
    transform: scale(1.05) translateY(-5px);
    background-color: white;
    color: #2b57ff;
    box-shadow: 0 0 40px rgba(43, 87, 255, 0.6);
}

.promo-grid {
    padding: 100px 0;
    background-color: #0c0c0c;
}

.promo-card {
    background: #151515;
    border-radius: 25px;
    padding: 40px;
    height: 100%;
    transition: 0.4s;
    border: 1px solid #222;
    text-decoration: none;
    display: block;
}

.promo-card:hover {
    border-color: #2b57ff;
    background: #1a1a1a;
    transform: translateY(-10px);
}

.promo-card i {
    font-size: 3rem;
    color: #2b57ff;
    margin-bottom: 20px;
    display: block;
}

.promo-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 10px;
}

.promo-card p {
    color: #888;
    margin: 0;
}

.features-section {
    padding: 80px 0;
    background: linear-gradient(to right, #080808, #0f172a, #080808);
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(43, 87, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2b57ff;
    font-size: 2rem;
    border: 1px solid rgba(43, 87, 255, 0.2);
}

.feature-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#notrox-footer-fixed {
    background-color: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid #111;
}

.ft-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.ft-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.ft-heading {
    color: #2b57ff;
    font-family: 'Bebas Neue';
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.ft-ul {
    list-style: none;
    padding: 0;
}

.ft-ul li {
    margin-bottom: 12px;
}

.ft-ul a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.ft-ul a:hover {
    color: white;
    padding-left: 5px;
}

.contact-group {
    margin-bottom: 20px;
}

.contact-group h3 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 400;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .header-menu-center ul {
        gap: 15px;
    }

    .ft-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .map-wrapper {
        height: 200px;
    }
}