/* --- global.css --- */
:root {
    --navy: #0B132B;
    --gold: #D4AF37;
    --teal: #00796B;
    --blue: #0288D1;
    --white: #FAF9F6;
    --charcoal: #37474F;
    --coral: #FF5252;
    --light-gray: #EAEAEA;
    --font-main: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); background-color: var(--white); color: var(--charcoal); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; transition: all 0.3s ease; }

/* Navigation Styles */
nav { background-color: var(--navy); padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.logo { color: var(--gold); font-size: 1.5rem; font-weight: 800; letter-spacing: 1px; }
.nav-links a { color: var(--white); margin-left: 30px; font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background-color: var(--coral); color: white !important; padding: 10px 20px; border-radius: 8px; }
.nav-cta:hover { background-color: #e04848; transform: translateY(-2px); }

/* Download Modal Styles */
.modal-overlay {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 43, 0.85); 
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}
.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: modalFadeIn 0.3s ease;
}
.modal-content h2 { color: var(--navy); margin-bottom: 10px; font-size: 1.8rem; }
.modal-content p { color: var(--charcoal); margin-bottom: 30px; }
.close-modal {
    position: absolute; top: 15px; right: 20px; font-size: 28px; font-weight: bold;
    color: var(--charcoal); cursor: pointer; transition: color 0.2s ease;
}
.close-modal:hover { color: var(--coral); }
.store-badges { display: flex; flex-direction: column; gap: 15px; align-items: center; }
.store-badge { height: 50px !important; width: auto !important; transition: transform 0.2s ease; display: block; }
.apple-badge { height: 35px !important; margin-bottom: 5px; }
.store-badge:hover { transform: scale(1.05); }

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95) translateY(-20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 768px) {
    .nav-links { display: none; } 
}