:root {
    --primary: #3b82f6;
    --background-light: #ffffff;
    --background-dark: #111827;
    --surface-light: #f3f4f6;
    --surface-dark: #1f2937;
    --text-light: #1f2937;
    --text-dark: #f9fafb;
    --text-muted-light: #6b7280;
    --text-muted-dark: #9ca3af;
    --border-light: #e5e7eb;
    --border-dark: #374151;
    --card-light: #ffffff;
    --card-dark: #1f2937;
    --blue-50: #eff6ff;
    --blue-900-20: rgba(30, 58, 138, 0.2);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background-light);
    color: var(--text-light);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 5rem;
    padding-top: 3.5rem;
    min-height: 100vh;
}

body.dark-mode {
    background-color: var(--background-dark);
    color: var(--text-dark);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

body.dark-mode header {
    background-color: var(--background-dark);
    border-color: var(--border-dark);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-weight: 700;
    font-size: 1.125rem;
    white-space: nowrap;
}

.my-icon {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.header-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.header-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted-light);
    text-decoration: none;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--primary);
}

body.dark-mode .header-nav a {
    color: var(--text-muted-dark);
}

body.dark-mode .header-nav a:hover {
    color: var(--primary);
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-btn {
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted-light);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    flex-shrink: 0;
}

.icon-btn:hover {
    background-color: var(--surface-light);
    color: var(--text-light);
}

body.dark-mode .icon-btn {
    background-color: transparent;
    color: var(--text-muted-dark);
    border-color: var(--border-dark);
}

body.dark-mode .icon-btn:hover {
    background-color: var(--surface-dark);
    color: var(--text-dark);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 3.5rem;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

body.dark-mode .mobile-menu {
    background-color: var(--background-dark);
    border-color: var(--border-dark);
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
}

.mobile-nav a {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    transition: background-color 0.15s, color 0.15s;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    background-color: var(--surface-light);
    color: var(--primary);
}

body.dark-mode .mobile-nav a {
    color: var(--text-dark);
    border-color: var(--border-dark);
}

body.dark-mode .mobile-nav a:hover {
    background-color: var(--surface-dark);
    color: var(--primary);
}

/* ===== MAIN LAYOUT ===== */
main {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    padding-top: 0.5rem;
}

.hero h1 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 700;
    line-height: 1.25;
}

/* ===== NUMBERS GRID ===== */
.numbers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: 100px;
}

@media (min-width: 560px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== NUMBER CARD ===== */
.number-card {
    background-color: var(--card-light);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}

.number-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

body.dark-mode .number-card {
    background-color: var(--surface-dark);
    border-color: var(--border-dark);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.country-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-info .fi {
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    width: 22px;
    height: 16px;
    flex-shrink: 0;
}

.timestamp {
    font-size: 0.75rem;
    color: var(--text-muted-light);
    font-weight: 500;
}

body.dark-mode .timestamp {
    color: var(--text-muted-dark);
}

.number-display {
    margin-bottom: 0.875rem;
}

.country-name {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-muted-light);
}

body.dark-mode .country-name {
    color: var(--text-muted-dark);
}

.phone-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-number {
    font-size: 1.1875rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-muted-light);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background-color 0.2s;
    height: auto;
    width: auto;
    line-height: 1;
}

.copy-btn:hover {
    color: var(--primary);
    background-color: var(--surface-light);
}

body.dark-mode .copy-btn {
    color: var(--text-muted-dark);
}

body.dark-mode .copy-btn:hover {
    color: var(--primary);
    background-color: var(--surface-dark);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.open-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
    transition: gap 0.2s;
}

.open-link:hover {
    gap: 0.375rem;
}

.badge-new {
    background-color: var(--primary);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== BUTTONS ===== */
.load-more-container {
    padding-top: 1rem;
    display: flex;
    justify-content: center;
}

.btn-outline {
    padding: 0.625rem 1.5rem;
    border: 1.5px solid var(--border-light);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    background-color: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    height: auto;
    line-height: 1.5;
}

body.dark-mode .btn-outline {
    border-color: var(--border-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--surface-light);
    border-color: var(--primary);
    color: var(--primary);
}

body.dark-mode .btn-outline:hover {
    background-color: var(--surface-dark);
}

.btn-outline:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

button[name="button"],
button[type="button"].get-number-btn {
    display: block;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 48px;
    background-color: var(--primary);
    border-radius: 10px;
    color: white;
    font-size: 0.9375rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

button[name="button"]:hover,
button[type="button"].get-number-btn:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
}

.btn-primary-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.875rem;
    background-color: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: default;
}

/* ===== STEPS ===== */
.section-title {
    font-size: 1.375rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.step-card {
    background-color: var(--card-light);
    border: 1px solid var(--border-light);
    border-radius: 0.875rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

body.dark-mode .step-card {
    background-color: var(--card-dark);
    border-color: var(--border-dark);
}

.step-visual {
    background-color: var(--blue-50);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 9rem;
}

body.dark-mode .step-visual {
    background-color: var(--blue-900-20);
}

.visual-mockup {
    position: relative;
    width: 100%;
    max-width: 160px;
}

.step-content {
    padding: 1.125rem 1.25rem;
}

.step-badge {
    display: inline-block;
    background-color: #111827;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 0.625rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.dark-mode .step-badge {
    background-color: #f9fafb;
    color: #111827;
}

.step-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.step-desc {
    color: var(--text-muted-light);
    font-size: 0.875rem;
    line-height: 1.6;
}

body.dark-mode .step-desc {
    color: var(--text-muted-dark);
}

.mockup-item {
    background-color: white;
    border-radius: 0.5rem;
    padding: 0.625rem 0.75rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #f3f4f6;
    font-size: 0.875rem;
}

body.dark-mode .mockup-item {
    background-color: #1f2937;
    border-color: #374151;
}

.mockup-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary);
    border-radius: 9999px;
}

.mockup-line {
    height: 0.5rem;
    width: 3rem;
    background-color: #e5e7eb;
    border-radius: 9999px;
}

body.dark-mode .mockup-line {
    background-color: #374151;
}

.floating-icon {
    position: absolute;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
    z-index: 10;
    font-size: 0.6875rem;
    font-weight: 700;
}

/* ===== CONTENT SECTION ===== */
.content-section {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    margin-top: 1rem;
}

body.dark-mode .content-section {
    border-color: var(--border-dark);
}

.content-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

body.dark-mode .content-section h2 {
    color: var(--text-dark);
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    font-size: 0.9375rem;
    color: var(--text-muted-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-family: inherit;
}

body.dark-mode .content-section p {
    color: var(--text-muted-dark);
}

.content-section ul,
.content-section ol {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-section li {
    font-size: 0.9375rem;
    color: var(--text-muted-light);
    line-height: 1.7;
    margin-bottom: 0.375rem;
}

body.dark-mode .content-section li {
    color: var(--text-muted-dark);
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (min-width: 700px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item {
    background-color: var(--card-light);
    border: 1px solid var(--border-light);
    border-radius: 0.875rem;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

body.dark-mode .faq-item {
    background-color: var(--card-dark);
    border-color: var(--border-dark);
}

.faq-item h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--text-light);
}

body.dark-mode .faq-item h3 {
    color: var(--text-dark);
}

.faq-item p {
    font-size: 0.875rem;
    color: var(--text-muted-light);
    line-height: 1.65;
    font-family: inherit;
}

body.dark-mode .faq-item p {
    color: var(--text-muted-dark);
}

/* ===== SMS CARDS (receive page) ===== */
.sms-card {
    background-color: var(--surface-light);
    border: 1px solid var(--border-light);
    border-radius: 0.875rem;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

body.dark-mode .sms-card {
    background-color: rgba(31, 41, 55, 0.6);
    border-color: var(--border-dark);
}

.sms-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.625rem;
}

.sms-sender {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sms-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

body.dark-mode .sms-avatar {
    background-color: rgba(59, 130, 246, 0.2);
}

.sms-from {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-light);
}

body.dark-mode .sms-from {
    color: var(--text-dark);
}

.sms-time {
    font-size: 0.75rem;
    color: var(--text-muted-light);
    background-color: white;
    border: 1px solid var(--border-light);
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
}

body.dark-mode .sms-time {
    color: var(--text-muted-dark);
    background-color: var(--surface-dark);
    border-color: var(--border-dark);
}

.sms-body {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.55;
    padding-left: 2.5rem;
}

body.dark-mode .sms-body {
    color: var(--text-dark);
}

.sms-body strong {
    color: var(--primary);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.spinning {
    animation: spin 0.7s linear;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--text-muted-light);
    max-width: 1100px;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.site-footer {
    padding: 1.75rem 1rem;
    text-align: center;
    border-top: 1px solid var(--border-light);
    margin-top: 2rem;
    background-color: var(--surface-light);
    font-size: 0.875rem;
    color: var(--text-muted-light);
}

body.dark-mode .site-footer {
    background-color: var(--surface-dark);
    border-color: var(--border-dark);
    color: var(--text-muted-dark);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted-light);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

body.dark-mode .footer-links a {
    color: var(--text-muted-dark);
}

.footer-links a:hover {
    color: var(--primary);
}

/* ===== CONTAINERS (about, privacy, etc) ===== */
.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: var(--card-light);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

body.dark-mode .container {
    background: var(--card-dark);
}

.container h1 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
}

.container h2 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.container p {
    margin-bottom: 1rem;
    color: var(--text-muted-light);
    line-height: 1.7;
    font-family: inherit;
}

body.dark-mode .container p {
    color: var(--text-muted-dark);
}

.container ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.container li {
    margin-bottom: 0.375rem;
    color: var(--text-muted-light);
    line-height: 1.65;
}

body.dark-mode .container li {
    color: var(--text-muted-dark);
}

.container a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.container a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE TEXT UTILITIES ===== */
p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.bg-gray-100 { background-color: #f3f4f6; padding: 0.75rem; border-radius: 0.5rem; }

@media (prefers-color-scheme: dark) {
    .bg-gray-100 { background-color: var(--surface-dark); }
}

body.dark-mode .bg-gray-100 { background-color: var(--surface-dark); }

/* ===== LANGUAGE DROPDOWN ===== */
.lang-dropdown-wrapper {
    position: relative;
    display: none;
    align-items: center;
}

@media (min-width: 768px) {
    .lang-dropdown-wrapper {
        display: flex;
    }
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    background: transparent;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted-light);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    white-space: nowrap;
    line-height: 1;
}

.lang-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.lang-btn.open {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(59,130,246,0.06);
}

.lang-btn-flag {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    display: inline-block;
}

.lang-chevron {
    transition: transform 0.2s;
    flex-shrink: 0;
}

.lang-btn.open .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--background-light);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 170px;
    z-index: 200;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    pointer-events: none;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.875rem;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.875rem;
    transition: background 0.15s;
}

.lang-option:hover {
    background: var(--surface-light);
    color: var(--primary);
}

.lang-option.active {
    background: rgba(59,130,246,0.08);
    color: var(--primary);
    font-weight: 600;
}

.lang-option .fi {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    flex-shrink: 0;
    display: inline-block;
}

.lang-option-name {
    flex: 1;
}

.lang-option-code {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted-light);
    opacity: 0.7;
}

.lang-option.active .lang-option-code {
    color: var(--primary);
    opacity: 1;
}

body.dark-mode .lang-btn {
    border-color: var(--border-dark);
    color: var(--text-muted-dark);
}

body.dark-mode .lang-btn:hover,
body.dark-mode .lang-btn.open {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(59,130,246,0.1);
}

body.dark-mode .lang-dropdown {
    background: var(--surface-dark);
    border-color: var(--border-dark);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

body.dark-mode .lang-option {
    color: var(--text-dark);
}

body.dark-mode .lang-option:hover {
    background: rgba(255,255,255,0.06);
    color: var(--primary);
}

body.dark-mode .lang-option.active {
    background: rgba(59,130,246,0.15);
}

body.dark-mode .lang-option-code {
    color: var(--text-muted-dark);
}

/* Mobile lang in mobile menu */
.mobile-lang-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border-light);
    margin-top: 0.25rem;
}

body.dark-mode .mobile-lang-row {
    border-color: var(--border-dark);
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: var(--text-muted-light);
    font-size: 0.75rem;
    font-weight: 700;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.mobile-lang-option:hover,
.mobile-lang-option.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(59,130,246,0.08);
}

.mobile-lang-option .fi {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    display: inline-block;
}

body.dark-mode .mobile-lang-option {
    border-color: var(--border-dark);
    color: var(--text-muted-dark);
}

body.dark-mode .mobile-lang-option:hover,
body.dark-mode .mobile-lang-option.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(59,130,246,0.15);
}
