body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #050505;
    color: white;
    text-align: center;
}

/* HEADER */
header {
    padding: 20px;
    background: #0a0a0a;
}

header a {
    color: #a855f7;
    text-decoration: none;
    font-weight: 600;
}

/* HERO PAGE */
.page {
    padding: 100px 20px;
}

/* TITLU */
.page h1 {
    font-size: 45px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px #9333ea;
}

/* TEXT */
.page p {
    max-width: 600px;
    margin: auto;
    color: #aaa;
    line-height: 1.6;
}

/* GLOW EFFECT DIFERIT PE PAGINI */
.economie {
    background: radial-gradient(circle, #1a0033, #050505);
}

.politie {
    background: radial-gradient(circle, #001a33, #050505);
}

.masini {
    background: radial-gradient(circle, #330000, #050505);
}

.roleplay {
    background: radial-gradient(circle, #1a1a00, #050505);
}

/* ANIMATIE */
.page h1 {
    animation: glow 2s infinite alternate;
}

/* STAFF PAGE */

.staff-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.staff-card {
    background: #0d0d0d;
    padding: 25px;
    border-radius: 15px;
    width: 250px;
    transition: 0.3s;
    border: 1px solid #9333ea;
}

/* ROLE COLORS */
.owner {
    box-shadow: 0 0 25px #ff00ff;
}

.admin {
    box-shadow: 0 0 25px #9333ea;
}

.dev {
    box-shadow: 0 0 25px #00ffff;
}

.staff-card:hover {
    transform: translateY(-10px);
}

/* TEXT */
.staff-card h2 {
    margin-bottom: 10px;
}

.staff-card p {
    color: #aaa;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #9333ea;
    }
    to {
        text-shadow: 0 0 25px #c084fc;
    }
}

/* MASINI PAGE */

.cars-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.car-card {
    background: #0d0d0d;
    border-radius: 15px;
    width: 280px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #9333ea;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.3);
}

.car-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.8);
}

.car-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.car-card h2 {
    margin: 15px 0 5px;
}

.car-card p {
    padding: 0 15px;
    font-size: 14px;
    color: #aaa;
}

.price {
    display: block;
    margin: 15px;
    font-weight: bold;
    color: #a855f7;
    text-shadow: 0 0 10px #a855f7;
}

/* CASE PAGE */

.houses-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.house-card {
    background: #0d0d0d;
    border-radius: 15px;
    width: 280px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #9333ea;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.3);
}

.house-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.8);
}

.house-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.house-card h2 {
    margin: 15px 0 5px;
}

.house-card p {
    padding: 0 15px;
    font-size: 14px;
    color: #aaa;
}

.price {
    display: block;
    margin: 15px;
    font-weight: bold;
    color: #a855f7;
    text-shadow: 0 0 10px #a855f7;
}

/* background diferit */
.case {
    background: radial-gradient(circle, #00291a, #050505);
}

/* UPDATES PAGE */

.updates {
    background: radial-gradient(circle, #140033, #050505);
}

.updates-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.update-card {
    width: 80%;
    max-width: 700px;
    background: #0d0d0d;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #9333ea;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.3);
    text-align: left;
}

/* TAG */
.tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
}

/* CULORI CATEGORII */
.update .tag {
    background: #9333ea;
}

.fix .tag {
    background: #ef4444;
}

.event .tag {
    background: #22c55e;
}

/* IMAGINI */
.images {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.images img {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
    transition: 0.3s;
}

.images img:hover {
    transform: scale(1.05);
}

