body {
    background-color: #080808;
    color: white;
    font-family: 'Jost', sans-serif;
    overflow-x: hidden;
}
header {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    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; }
.about-hero {
    padding: 120px 0 60px;
    background: linear-gradient(to bottom, #1a2a6c44 0%, #080808 100%);
    text-align: center;
}
.about-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    letter-spacing: 3px;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease-out;
}
.blue-dash {
    width: 80px;
    height: 4px;
    background-color: #2b57ff;
    margin: 0 auto 30px;
    border-radius: 2px;
}
.story-section {
    padding: 80px 0;
}
.story-content {
    background: rgba(255,255,255,0.03);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    animation: fadeInUp 1s ease-out;
}
.story-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #2b57ff;
    margin-bottom: 20px;
}
.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}
.stats-grid {
    padding: 60px 0;
}
.stat-card {
    background: #111;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    border-bottom: 4px solid #2b57ff;
    transition: 0.3s;
}
.stat-card:hover {
    transform: translateY(-10px);
    background: #1a1a1a;
}
.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #fff;
    display: block;
}
.stat-label {
    color: #2b57ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.values-section {
    padding: 100px 0;
    background-color: #0c0c0c;
}
.value-card {
    padding: 40px;
    border-radius: 25px;
    background: linear-gradient(145deg, #151515, #0a0a0a);
    height: 100%;
    transition: 0.4s;
    border: 1px solid #222;
}
.value-card:hover {
    border-color: #2b57ff;
    box-shadow: 0 10px 40px rgba(43, 87, 255, 0.1);
}
.value-card i {
    font-size: 2.5rem;
    color: #2b57ff;
    margin-bottom: 20px;
}
.value-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    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; 
    }
.map-wrapper { 
    border-radius: 15px; 
    overflow: hidden; 
    height: 250px; 
}
@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 15px; }
    .about-hero { padding: 80px 20px 40px; }
    .story-content { padding: 30px 20px; }
    .ft-row { grid-template-columns: 1fr; text-align: center; }
}