/* --- Base and Variables --- */
:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --primary-color: #00e5ff;
    --primary-glow: rgba(0, 229, 255, 0.5);
    --card-bg: #1a1a1a;
    --card-border: #333;
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

/* --- Global Styles --- */
html { scroll-behavior: smooth; }
body { background-color: var(--bg-color); color: var(--text-color); font-family: var(--font-secondary); margin: 0; line-height: 1.6; }
main { padding: 20px; max-width: 1200px; margin: 0 auto; }
h1, h2, h3 { font-family: var(--font-primary); color: #ffffff; text-shadow: 0 0 5px var(--primary-glow); text-align: center; }
.section-title { font-size: 2rem; margin-top: 60px; margin-bottom: 40px; }

/* --- Header & Language Switcher --- */
.site-header { text-align: center; padding: 40px 20px 20px; border-bottom: 1px solid var(--card-border); position: relative; }
.logo { font-size: 3rem; margin: 0; letter-spacing: 4px; }
.subtitle { font-size: 1.5rem; color: #a0a0a0; margin: 5px 0 0; }
.description { max-width: 600px; margin: 20px auto 0; color: var(--text-color); font-size: 1.2rem; line-height: 1.7; }
.main-title-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Adjust the space between logo and title */
}

#header-icon {
    color: #ff3333; /* A bright, thematic red. You can also just use 'red'. */
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.7); /* Optional: Adds a nice glow */
}
.language-switcher { position: absolute; top: 20px; right: 20px; display: flex; gap: 15px; background: rgba(26, 26, 26, 0.8); padding: 8px 12px; border-radius: 5px; border: 1px solid var(--card-border); }
.lang-link { font-weight: bold; font-family: var(--font-primary); padding: 5px; color: var(--primary-color); text-decoration: none; transition: color 0.3s ease; }
.lang-link:hover { color: #ffffff; }
.lang-link.active { color: #ffffff; text-shadow: 0 0 8px var(--primary-glow); pointer-events: none; }

/* --- Statistics Section --- */
.stats-section {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--card-border);
}

.stats-datetime {
    text-align: center;
    color: #a0a0a0;
    margin-top: -30px;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    /* Create 3 columns on desktop, 2 on tablet, and 1 on mobile */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.stat-item {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.0rem;
    color: var(--primary-color);
    font-weight: 700;
}

.stat-label {
    margin: 5px 0 0 0;
    color: #b0b0b0;
    font-size: 1rem;
}

/* --- Information Section --- */
.info-intro { text-align: center; max-width: 700px; margin: -20px auto 40px; color: #b0b0b0; }
.info-steps { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }
.info-step { background-color: var(--card-bg); border: 1px solid var(--card-border); border-radius: 8px; padding: 25px; text-align: center; flex: 1; min-width: 260px; }
.info-step h3 { margin-top: 0; color: var(--primary-color); }

/* --- Area Coverage Section --- */
.quick-nav-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; padding: 0; margin-bottom: 40px; list-style: none; }
.quick-nav-item { display: flex; align-items: center; gap: 8px; padding: 8px 15px; background-color: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; text-decoration: none; color: var(--text-color); font-family: var(--font-primary); transition: all 0.3s ease; }
.quick-nav-item:hover { color: #ffffff; background-color: #2a2a2a; border-color: var(--primary-color); transform: translateY(-2px); }
.flag-icon { width: 20px; height: auto; border-radius: 2px; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.area-card { background-color: var(--card-bg); border: 1px solid var(--card-border); border-radius: 8px; overflow: hidden; text-align: center; }
.area-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.area-card-title { font-size: 1.5rem; margin: 20px 0; }

/* --- Subscription & Pricing Section --- */
.pricing-box { max-width: 400px; margin: 0 auto; background-color: var(--card-bg); border: 1px solid var(--primary-color); border-radius: 8px; padding: 30px; text-align: center; box-shadow: 0 0 20px var(--primary-glow); }
.price-tag { font-family: var(--font-primary); font-size: 3.5rem; color: var(--primary-color); margin: 0; }
.price-frequency { margin: 0 0 25px 0; color: #b0b0b0; }
.subscribe-button { display: inline-block; background-color: var(--primary-color); color: var(--bg-color); padding: 12px 30px; border-radius: 5px; text-decoration: none; font-family: var(--font-primary); font-weight: bold; transition: background-color 0.3s ease, color 0.3s ease; }
.subscribe-button:hover { background-color: #fff; color: #000; }
.trial-note {
    font-weight: bold;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.5;
}

/* --- Contact Section --- */
.contact-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.contact-link { display: inline-flex; align-items: center; gap: 10px; color: var(--text-color); background-color: var(--card-bg); border: 1px solid var(--card-border); padding: 15px 25px; border-radius: 5px; text-decoration: none; font-size: 1.1rem; transition: all 0.3s ease; }
.contact-link:hover { border-color: var(--primary-color); color: var(--primary-color); }
.contact-icon { width: 24px; height: 24px; }

/* --- Footer --- */
.site-footer { text-align: center; padding: 20px; margin-top: 60px; border-top: 1px solid var(--card-border); color: #777; }

/* --- Responsive Design --- */
@media (max-width: 600px) {
    #header-icon {
        /*The fa-2x class scales with font size, so it often doesn't need changes, 
           but you could add font-size: 1.8em; here if you want it smaller on mobile */
           font-size: 4em;
    }
    .language-switcher { position: static; justify-content: center; margin-top: 20px; }
    .site-header { padding: 20px; }
}
