:root {
    --primary: #1d9bf0;
    --primary-dark: #1a8cd8;
    --primary-light: #8ecdf8;
    --primary-subtle: rgba(29, 155, 240, 0.1);
    --bg-dark: #0a0f14;
    --bg-card: #16202a;
    --bg-input: #1e2c3a;
    --text-primary: #e7e9ea;
    --text-secondary: #71767b;
    --text-muted: #536471;
    --border-color: #2f3336;
    --success: #00ba7c;
    --error: #f4212e;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(29, 155, 240, 0.3);
}

[data-theme="light"] {
    --bg-dark: #f7f9f9;
    --bg-card: #ffffff;
    --bg-input: #eff3f4;
    --text-primary: #0f1419;
    --text-secondary: #536471;
    --text-muted: #8b98a5;
    --border-color: #cfd9de;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(29, 155, 240, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(29, 155, 240, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(29, 155, 240, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(29, 155, 240, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.top-header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header-controls {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    border-color: var(--text-muted);
    background: var(--bg-input);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

.sun-icon { display: none; }
.moon-icon { display: block; }

[data-theme="light"] .sun-icon { display: block; }
[data-theme="light"] .moon-icon { display: none; }

.language-selector {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    border-color: var(--text-muted);
    background: var(--bg-input);
}

.lang-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.language-selector.active .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 380px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 16px;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.language-selector.active .lang-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.lang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.2s ease;
}

.lang-item:hover {
    background: var(--bg-input);
}

.lang-item.active {
    background: #e83a59;
    color: white;
}

.lang-code {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    width: 24px;
}

.lang-item.active .lang-code {
    color: rgba(255, 255, 255, 0.8);
}

.lang-name {
    font-weight: 500;
}

@media (max-width: 768px) {
    .top-header {
        top: 10px;
        left: 10px;
    }
    .lang-dropdown {
        width: 300px;
        left: 0;
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(29, 155, 240, 0.4));
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 400;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.download-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.input-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 20px;
    width: 22px;
    height: 22px;
    color: var(--text-muted);
    pointer-events: none;
    transition: color 0.3s ease;
}

.url-input {
    width: 100%;
    padding: 18px 50px 18px 56px;
    font-size: 16px;
    font-family: inherit;
    background: var(--bg-input);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s ease;
}

.url-input::placeholder {
    color: var(--text-muted);
}

.url-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-subtle), var(--shadow-glow);
}

.url-input:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
    color: var(--primary);
}

.clear-btn {
    position: absolute;
    right: 16px;
    width: 28px;
    height: 28px;
    border: none;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
}

.clear-btn svg {
    width: 14px;
    height: 14px;
    color: var(--text-secondary);
}

.clear-btn:hover {
    background: var(--text-muted);
}

.clear-btn:hover svg {
    color: var(--text-primary);
}

.url-input:not(:placeholder-shown) ~ .clear-btn {
    opacity: 1;
    transform: scale(1);
}

.download-btn {
    position: relative;
    width: 100%;
    padding: 18px 32px;
    font-size: 17px;
    font-weight: 600;
    font-family: inherit;
    color: white;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 
        0 4px 0 0 #0d7fc9,
        0 6px 20px rgba(29, 155, 240, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: all 0.15s ease;
}

.download-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 0 #0d7fc9,
        0 10px 30px rgba(29, 155, 240, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.download-btn:active:not(:disabled) {
    transform: translateY(2px);
    box-shadow: 
        0 2px 0 0 #0d7fc9,
        0 4px 15px rgba(29, 155, 240, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.download-btn:disabled {
    cursor: not-allowed;
    opacity: 0.9;
}

.btn-content,
.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-loading {
    display: none;
}

.download-btn.loading .btn-content {
    display: none;
}

.download-btn.loading .btn-loading {
    display: flex;
}

.btn-icon {
    width: 22px;
    height: 22px;
}

.spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.error-message {
    display: none;
    padding: 16px 20px;
    margin-top: 20px;
    background: rgba(244, 33, 46, 0.1);
    border: 1px solid rgba(244, 33, 46, 0.3);
    border-radius: 12px;
    color: var(--error);
    font-size: 14px;
    text-align: center;
}

.error-message.show {
    display: block;
    animation: shake 0.4s ease-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.result-section {
    display: none;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    animation: fadeIn 0.4s ease;
}

.result-section.show {
    display: block;
}

/* Articles Section Styles */
.articles-container {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    color: var(--text-primary);
}

.article-intro {
    text-align: center;
}

.article-intro h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.article-intro p {
    color: var(--text-secondary);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

.how-to-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.how-to-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.how-to-card:hover {
    transform: translateY(-5px);
}

.card-image-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--bg-input);
    border-radius: 16px;
    margin-bottom: 24px;
    overflow: hidden;
}

.card-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-to-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.how-to-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.deep-dive-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
}

.deep-dive-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.deep-dive-image {
    width: 100%;
    max-height: 400px;
    border-radius: 16px;
    margin: 30px 0;
    overflow: hidden;
}

.deep-dive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deep-dive-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 16px;
}

.faq-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 992px) {
    .how-to-grid {
        grid-template-columns: 1fr;
    }
}

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

.video-preview {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    background: var(--bg-input);
    min-height: 200px;
}

.video-player {
    width: 100%;
    max-height: 400px;
    border-radius: 16px;
    background: var(--bg-input);
    display: none;
}

.video-player.loaded {
    display: block;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--text-muted);
    gap: 16px;
}

.video-placeholder.hidden {
    display: none;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
    margin-left: 4px;
}

.video-placeholder p {
    font-size: 14px;
    font-weight: 500;
}

.video-info {
    text-align: center;
}

.video-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.5;
    max-height: 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.quality-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.quality-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.quality-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: white;
    background: linear-gradient(180deg, var(--success) 0%, #00a36e 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 
        0 3px 0 0 #007a54,
        0 4px 15px rgba(0, 186, 124, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: all 0.15s ease;
}

.quality-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 5px 0 0 #007a54,
        0 8px 25px rgba(0, 186, 124, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.quality-btn:active {
    transform: translateY(1px);
    box-shadow: 
        0 2px 0 0 #007a54,
        0 3px 10px rgba(0, 186, 124, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.quality-btn svg {
    width: 18px;
    height: 18px;
}

/* Download loading overlay */
.download-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
}
.download-loading-overlay.show {
    display: flex;
}
.download-loading-popup {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 36px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    min-width: 260px;
}
.download-loading-popup .spinner {
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: download-spin 0.8s linear infinite;
}
.download-loading-popup p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}
@keyframes download-spin {
    to { transform: rotate(360deg); }
}

.features-section,
.how-to-section {
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--primary-subtle);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 24px;
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(29, 155, 240, 0.4);
}

.step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-arrow {
    color: var(--text-muted);
}

.step-arrow svg {
    width: 24px;
    height: 24px;
}

.platform-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 
        0 2px 0 0 rgba(0, 0, 0, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: all 0.15s ease;
}

.platform-btn svg {
    width: 18px;
    height: 18px;
}

.platform-btn:hover {
    transform: translateY(-2px);
    border-color: var(--text-muted);
    color: var(--text-primary);
    box-shadow: 
        0 4px 0 0 rgba(0, 0, 0, 0.3),
        0 6px 15px rgba(0, 0, 0, 0.3);
}

.platform-btn:active {
    transform: translateY(1px);
    box-shadow: 
        0 1px 0 0 rgba(0, 0, 0, 0.3),
        0 2px 5px rgba(0, 0, 0, 0.2);
}

.platform-btn.active {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary);
    box-shadow: 
        0 3px 0 0 #0d7fc9,
        0 4px 15px rgba(29, 155, 240, 0.35);
}

.platform-btn.tiktok:hover {
    border-color: #ff0050;
    color: #ff0050;
}

.platform-btn.instagram:hover {
    border-color: #e4405f;
    color: #e4405f;
}

.platform-btn.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
}

.footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .container {
        padding: 24px 16px;
    }
    
    .download-card {
        padding: 28px 20px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .url-input {
        padding: 16px 45px 16px 50px;
        font-size: 15px;
    }
    
    .download-btn {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step {
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-nav {
        gap: 8px;
    }
    
    .platform-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .platform-btn span {
        display: none;
    }
    
    .platform-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .quality-buttons {
        flex-direction: column;
    }
    
    .quality-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ad-modal-content {
        border-radius: 16px;
    }
    
    .ad-container {
        padding: 30px 16px;
    }
    
    .ad-placeholder {
        padding: 40px 20px;
    }
}

/* Mobile-only: push the logo and site title down so they're visible on small screens */
@media only screen and (max-width: 480px) {
    /* Move the whole header block down by 35% of the viewport height on smartphones */
    .header {
        padding-top: 10vh; /* moved up to top by 10% */
    }

    /* Ensure logo alignment remains centered after shifting */
    .logo {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 0;
    }

    /* Slightly reduce logo text size on very small screens to avoid wrapping issues */
    .logo-text {
        font-size: 22px;
    }
}
