:root {
    --primary: #dc2626;
    --primary-hover: #b91c1c;
    --bg-overlay: rgba(0, 0, 0, 0.6);
    --card-bg: rgba(0, 0, 0, 0.45);
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #000;
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pascalemachalani2025_3.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: -1;
}

#app-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.lang-switch button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-switch button:hover {
    background: rgba(255, 255, 255, 0.2);
}

main {
    text-align: center;
    flex: 1;
}

header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.divider {
    height: 4px;
    width: 80px;
    background: var(--primary);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

header h2 {
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    color: #fecaca;
    margin-bottom: 3rem;
}

.content-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lead-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.badge {
    background: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

.details-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
}

[dir="rtl"] .details-row {
    text-align: right;
}

.detail-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-box h3 {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.small-text {
    color: var(--text-muted);
    font-size: 1rem;
    font-style: italic;
    margin-top: 2rem;
}

footer {
    margin-top: 4rem;
    padding-bottom: 2rem;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* Notification Banner */
#notification-banner {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 90%;
    max-width: 500px;
}

#notification-banner.hidden {
    display: none;
}

#allow-notif {
    background: white;
    color: var(--primary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
}

@media (max-width: 768px) {
    header h1 { font-size: 2.5rem; }
    .details-row { grid-template-columns: 1fr; }
    #app-container { padding: 1rem; }
    .content-card { padding: 1.5rem; }
}
