:root {
    --primary-blue: #0066cc;
    --primary-blue-dark: #0052a3;
    --primary-blue-light: #3385d6;
    --black: #0f1419;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #8a9ba8;
    --dark-gray: #1a1f26;
    --darker-gray: #0a0f14;
    --border-gray: #2a3a4a;
    --accent: #ffffff;
    --accent-light: #e6e6e6;
    --gradient: linear-gradient(135deg, #0a0f14 0%, #0f1419 100%);
    --card-bg: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #b8c2cc;
    --accent-gradient: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    --success-color: #00c851;
    --warning-color: #ffbb33;
    --error-color: #ff4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 18px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== IMPROVED HEADER & NAVIGATION ===== */
header {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-gray);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.logo-svg-wrapper {
    width: auto;
    height: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.logo-img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

/* WHITE DOWNLOAD BUTTON */
.download-btn {
    background: var(--white);
    color: var(--black);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    background: var(--accent-light);
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    margin-left: auto;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--white);
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== IMPROVED HERO SECTION ===== */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--black) 0%, var(--darker-gray) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    color: var(--white);
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-buttons a {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* WHITE PRIMARY BUTTON */
.primary-btn {
    background: var(--white);
    color: var(--black);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.primary-btn:hover {
    transform: translateY(-3px);
    background: var(--accent-light);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.secondary-btn {
    border: 2px solid var(--border-gray);
    color: var(--white);
    background: transparent;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--white);
    color: var(--white);
}

.hero-buttons a:hover {
    transform: translateY(-3px);
}

/* ===== IMPROVED FEATURES SECTION ===== */
.features {
    padding: 100px 0;
    background: var(--darker-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.section-title p {
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.feature-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--white);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
}

.feature-icon, .feature-icon-svg {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--white);
}

.feature-icon-svg img {
    height: 60px;
    width: auto;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 700;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== FIXED COMPARISON SECTION FOR MOBILE ===== */
.comparison {
    padding: 100px 0;
    background: var(--black);
}

.comparison-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    background: var(--card-bg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px; /* Ensure all columns are visible on mobile */
}

.comparison-table th, .comparison-table td {
    padding: 20px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-gray);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
    border-bottom: 2px solid var(--border-gray);
    position: sticky;
    top: 0;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--white);
    min-width: 160px;
    position: sticky;
    left: 0;
    background: var(--card-bg);
    z-index: 1;
    border-right: 1px solid var(--border-gray);
}

.comparison-table th:first-child {
    position: sticky;
    left: 0;
    background: rgba(255, 255, 255, 0.05);
    z-index: 2;
    border-right: 1px solid var(--border-gray);
    min-width: 160px;
}

.browser-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.browser-logo {
    height: 35px;
    width: auto;
}

.checkmark {
    color: var(--success-color);
    font-size: 1.1rem;
}

.cross {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: var(--dark-gray);
    color: var(--white);
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    border: 1px solid var(--border-gray);
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* ===== IMPROVED ROADMAP SECTION ===== */
.roadmap {
    padding: 100px 0;
    background: var(--darker-gray);
}

.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-gray);
}

.roadmap-item {
    width: 50%;
    padding: 0 40px 50px 0;
    position: relative;
    text-align: right;
}

.roadmap-item:nth-child(even) {
    margin-left: 50%;
    padding: 0 0 50px 40px;
    text-align: left;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 8px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    border: 3px solid var(--darker-gray);
}

.roadmap-item:nth-child(even)::before {
    left: -10px;
    right: auto;
}

.roadmap-content {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.roadmap-content:hover {
    border-color: var(--white);
    transform: translateX(5px);
}

.roadmap-item:nth-child(even) .roadmap-content:hover {
    transform: translateX(-5px);
}

.roadmap-content h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.roadmap-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.roadmap-date {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

/* ===== IMPROVED DOWNLOAD SECTION ===== */
.download {
    padding: 100px 0;
    text-align: center;
    background: var(--black);
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.download-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--white);
}

.download-icon {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: var(--white);
}

.download-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 700;
}

.download-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* WHITE DOWNLOAD CARD BUTTONS */
.download-card a {
    display: inline-block;
    margin: 8px;
    padding: 12px 24px;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.download-card a:hover {
    transform: translateY(-3px);
    background: var(--accent-light);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* ===== IMPROVED ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: var(--darker-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: left;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
    text-align: left;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-logo {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.about-logo:hover {
    transform: scale(1.02);
    border-color: var(--white);
}

/* ===== IMPROVED DONATION SECTION ===== */
.donation-section {
    padding: 100px 0;
    background: var(--black);
    text-align: center;
}

.benefits-cards {
    margin: 50px 0;
}

.benefits-cards h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 700;
}

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

.benefit-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 32px 24px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--white);
}

.benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--white);
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--white);
}

.benefit-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefit-card a {
    color: var(--white);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.benefit-card a:hover {
    color: var(--accent-light);
}

.donor-list {
    margin: 40px 0;
    text-align: center;
}

.donor-list p {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.optional-note {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-top: 20px;
}

.optional-note a {
    color: var(--white);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.optional-note a:hover {
    color: var(--accent-light);
}

/* ===== IMPROVED CONTACT FORM ===== */
.contact-section {
    padding: 100px 0;
    background: var(--black);
}

.contact-form-wrapper, .form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* WHITE SUBMIT BUTTON */
.submit-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: var(--accent-light);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.submit-btn:disabled {
    background: var(--medium-gray);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* ===== IMPROVED FOOTER ===== */
footer {
    padding: 60px 0 40px;
    background: var(--darker-gray);
    text-align: center;
    border-top: 1px solid var(--border-gray);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    width: 100%;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-logo p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.copyright {
    color: var(--medium-gray);
    font-size: 0.85rem;
    text-align: center;
}

.copyright a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--accent-light);
}

.message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.message.success {
    background: rgba(0, 200, 81, 0.1);
    color: var(--success-color);
    border-color: rgba(0, 200, 81, 0.3);
}

.message.error {
    background: rgba(255, 68, 68, 0.1);
    color: var(--error-color);
    border-color: rgba(255, 68, 68, 0.3);
}

/* ===== PAYMENT SELECTOR STYLES (for donate.html and unblock.html) ===== */
.donation-selector {
    margin: 50px 0;
    text-align: center;
}

.donation-selector h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 700;
}

.payment-select {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 24px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--white);
    border-radius: 6px;
    color: var(--white);
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888888' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 30px;
    box-sizing: border-box;
}

.address-display {
    background: var(--card-bg);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 24px;
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.payment-icon img {
    height: 35px;
    width: auto;
}

.payment-info h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.crypto-address {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 6px;
    margin: 12px 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    overflow-wrap: break-word;
    color: var(--medium-gray);
    line-height: 1.4;
}

/* WHITE COPY BUTTON */
.copy-btn {
    padding: 8px 16px;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.copy-btn:hover {
    transform: translateY(-2px);
    background: var(--accent-light);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.button-spacing {
    height: 20px;
}

/* ===== MOBILE STYLES ===== */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        border-bottom: 1px solid var(--border-gray);
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 16px;
        padding: 16px 20px;
        width: 100%;
        text-align: left;
        color: var(--white);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        margin: 4px 0;
    }

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

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

    .download-btn {
        display: none;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-text,
    .about-image {
        flex: none;
        width: 100%;
    }

    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-text p {
        text-align: center;
    }

    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-item {
        width: 100%;
        padding: 0 20px 40px 60px;
        text-align: left;
    }

    .roadmap-item:nth-child(even) {
        margin-left: 0;
        padding: 0 20px 40px 60px;
    }

    .roadmap-item::before {
        left: 10px;
        right: auto;
    }

    .roadmap-item:nth-child(even)::before {
        left: 10px;
    }

    .roadmap-content:hover {
        transform: none;
    }

    .container {
        padding: 0 20px;
        width: 100%;
        overflow-x: hidden;
    }

    /* Mobile comparison table improvements */
    .comparison {
        padding: 60px 0;
    }
    
    .comparison-table-container {
        margin-top: 30px;
        border-radius: 8px;
    }
    
    .comparison-table th, 
    .comparison-table td {
        padding: 16px 12px;
        font-size: 14px;
    }
    
    .comparison-table td:first-child {
        min-width: 140px;
    }
    
    .comparison-table th:first-child {
        min-width: 140px;
    }
    
    .browser-logo {
        height: 28px;
    }
    
    .browser-header {
        gap: 6px;
    }
    
    .browser-header span {
        font-size: 13px;
    }
}

/* Extra small phones (like Honor 200) */
@media screen and (max-width: 360px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .feature-card,
    .download-card,
    .benefit-card {
        padding: 24px 20px;
    }

    .nav-links {
        padding: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Extra small comparison table */
    .comparison-table th, 
    .comparison-table td {
        padding: 14px 10px;
        font-size: 13px;
    }
    
    .comparison-table td:first-child {
        min-width: 130px;
    }
    
    .comparison-table th:first-child {
        min-width: 130px;
    }
    
    .browser-logo {
        height: 24px;
    }
    
    .browser-header span {
        font-size: 12px;
    }
    
    .checkmark, .cross {
        font-size: 1rem;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
a:focus,
button:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* ===== LOADING STATES ===== */
body.loaded * {
    transition: all 0.3s ease;
}

/* Scrollbar styling for comparison table */
.comparison-table-container::-webkit-scrollbar {
    height: 8px;
}

.comparison-table-container::-webkit-scrollbar-track {
    background: var(--border-gray);
    border-radius: 0 0 4px 4px;
}

.comparison-table-container::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: 4px;
}

.comparison-table-container::-webkit-scrollbar-thumb:hover {
    background: var(--white);
}