/* --- SHARED ELEMENTS --- */
body { margin: 0; background-color: #000; overflow-x: hidden; padding-bottom: 100px; }

.bg-stars {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at top, rgba(223, 2, 1, 0.4) 0%, transparent 70%),
    linear-gradient(to bottom, #1a0000 0%, #000000 100%);
  z-index: -1;
}

/* --- ABOUT PAGE HERO --- */
.about-hero { padding-top: 100px; padding-bottom: 60px; }

.premium-label {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #df0201; /* Unified Red */
    letter-spacing: 5px;
    font-size: 0.85rem;
}

.about-headline {
    font-family: 'Yeseva One', serif;
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
    min-height: 120px;
}

.about-headline span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #df0201;
}

.hero-subtext {
    max-width: 600px;
    font-family: 'Inter', sans-serif;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

/* --- GLASS CARDS --- */
.about-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.3s ease;
}

.text-red-gradient { color: #df0201; }

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-p { font-size: 1rem; color: rgba(255,255,255,0.8); }

.about-list { list-style: none; padding: 0; }
.about-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.about-list li span { color: #df0201; font-weight: 800; margin-right: 10px; }

/* --- BOTTOM NAV (Shared) --- */
.bottom-nav {
  position: fixed; bottom: 0; width: 100%; height: 80px;
  background: rgba(0, 0, 0, 0.95);
  display: flex; justify-content: space-around; align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}
.nav-link { text-decoration: none; color: #666; display: flex; flex-direction: column; align-items: center; font-size: 12px; }
.nav-link.active { color: #fff; }
.material-icons-outlined { font-size: 24px; }