:root {

    --imperium-red: #8b0000;
    --imperium-dark: #0d0d0d;
    --imperium-black: #050505;
    --imperium-gray: #1a1a1a;
    --imperium-light: #d9d9d9;

}

body {

    background: var(--imperium-black);
    color: white;
    font-family: "Segoe UI", sans-serif;

}

html {

    scroll-behavior: smooth;

}

.glass-nav {

    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);

}

.hero-section {

    position: relative;
    background:
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
        url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;

}

.hero-badge {

    padding: 10px 18px;
    background: rgba(139,0,0,0.2);
    border: 1px solid rgba(139,0,0,0.4);
    border-radius: 50px;
    color: #ffcccc;
    font-weight: 600;

}

.btn-imperium {

    background: var(--imperium-red);
    border: none;
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    transition: 0.3s;

}

.btn-imperium:hover {

    background: #a50000;
    transform: translateY(-2px);

}

.section-dark {

    background: var(--imperium-dark);
    padding: 120px 0;

}

.section-black {

    background: var(--imperium-black);
    padding: 120px 0;

}

.section-title {

    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;

}

.section-text {

    color: #b5b5b5;
    font-size: 1.1rem;
    line-height: 1.8;

}

.about-card {

    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;

}

.stat-box {

    background: var(--imperium-gray);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 40px;
    text-align: center;

}

.stat-box h3 {

    color: #ff4d4d;
    font-size: 2rem;

}

.venture-card {

    background: #121212;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 40px;
    height: 100%;
    transition: 0.3s;

}

.venture-card:hover {

    transform: translateY(-8px);
    border-color: rgba(139,0,0,0.4);

}

.venture-icon {

    font-size: 2rem;
    color: #ff4d4d;
    margin-bottom: 20px;

}

.leader-card {

    background: #121212;
    border-radius: 18px;
    padding: 50px;
    text-align: center;

}

.leader-avatar {

    width: 90px;
    height: 90px;
    background: var(--imperium-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 25px;
    font-size: 2rem;

}

.contact-section {

    padding: 120px 0;
    background: linear-gradient(to bottom, #0a0a0a, #000000);

}

.contact-card {

    background: #111111;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);

}

.custom-input {

    background: #1b1b1b;
    border: 1px solid #2c2c2c;
    color: white;
    padding: 14px;

}

.custom-input:focus {

    background: #1b1b1b;
    color: white;
    border-color: var(--imperium-red);
    box-shadow: none;

}

.footer-section {

    background: black;
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);

}

@media(max-width: 768px) {

    .section-title {

        font-size: 2.2rem;

    }

    .about-card {

        grid-template-columns: 1fr;

    }

}
