*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:black;
    color:white;

    margin:0;
    padding:30px;

    font-family:Arial, sans-serif;
}

.app{

    max-width:1600px;

    margin:0 auto;

    padding:30px;
}

.domain-buttons{

    display:flex;

    gap:12px;

    margin-top:20px;

    justify-content:flex-start;
}

.header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;
}

.header h1{
    font-size:3rem;
    margin-bottom:10px;
}

.header p{
    color:#aaa;
}

/* HERO */

.hero{
    background:#111;
    border:1px solid #222;
    border-radius:16px;
    padding:35px;
    margin-bottom:30px;
}

.hero h1{
    font-size:3rem;
    margin-bottom:15px;
}

.hero p{
    color:#ccc;
    font-size:1.1rem;
}

/* STATS */

.stats-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:25px;
}

.stat-card{
    background:#111;
    border:1px solid #222;
    border-radius:12px;
    padding:25px;
}

.stat-card h3{
    color:#999;
    margin-bottom:10px;
    font-size:0.9rem;
    text-transform:uppercase;
}

.stat-card p{
    font-size:1.3rem;
    font-weight:bold;
}

/* TWO COLUMN GRID */

.info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}



.info-card{
    background:#111;
    border:1px solid #222;
    border-radius:12px;
    padding:25px;
}

.info-card h2{
    margin-bottom:15px;
}

.info-card ul{
    padding-left:20px;
}

.info-card li{
    margin-bottom:10px;
}

/* FULL WIDTH */

.full-width{
    background:#111;
    border:1px solid #222;
    border-radius:12px;
    padding:25px;
    margin-bottom:20px;
}

.full-width h2{
    margin-bottom:15px;
}

/* CAREER CARDS */

.career-card{

    background:#111;

    border:1px solid #222;

    border-radius:12px;

    padding:25px;

    margin-bottom:15px;

    cursor:pointer;

    transition:0.2s;
}

.career-card:hover{

    background:#1a1a1a;

    border-color:#444;
}

.career-card h2{

    margin-bottom:10px;
}

/* BACK BUTTON */

#backBtn{

    background:#111;

    border:1px solid #333;

    color:white;

    padding:12px 20px;

    border-radius:10px;

    cursor:pointer;

    margin-bottom:20px;
}

#backBtn:hover{

    background:#1a1a1a;
}

/* MOBILE */

@media (max-width:768px){

    .domain-buttons{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:12px;
    }

    .domain-btn{
        width:140px;
        height:80px;
    }

}

.domain-buttons{

    display:flex;

    gap:15px;

    margin-left:auto;
}

.domain-btn{

    background:#111;

    color:white;

    border:1px solid #333;

    border-radius:10px;

    padding:10px 20px;

    cursor:pointer;

    transition:0.2s;
}

.domain-btn:hover{

    background:#1a1a1a;
}

.reality-box{

    background:#1a0f0f;

    border:1px solid #5a2222;

    border-left:5px solid #ff4d4d;

    border-radius:12px;

    padding:25px;
}