/* Base Styles - Light Mode (Default) */
:root {
    --primary-color: #0078d4;
    --primary-hover: #005a9e;
    --secondary-color: #50e6ff;
    --text-dark: #1a1a1a;
    --text-dark-on-yellow: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #107c10;
    --warning-color: #f7630c;
    --comparison-muted: rgba(0, 0, 0, 0.04);
}

/* Dark Mode - When system prefers dark theme */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #0078d4;
        --primary-hover: #40b0ff;
        --secondary-color: #50e6ff;
        --text-dark: #e0e0e0;
        --text-dark-on-yellow: #1a1a1a;
        --text-light: #b0b0b0;
        --bg-light: #1a1a1a;
        --bg-white: #2d2d2d;
        --border-color: #404040;
        --success-color: #107c10;
        --warning-color: #f7630c;
        --comparison-muted: rgba(255, 255, 255, 0.06);
    }

    /* Dark mode enhancements */
    table {
        background-color: var(--bg-white);
        color: var(--text-dark);
    }

    table thead {
        background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
        color: white;
    }

    table th {
        color: white;
        font-weight: 600;
    }

    table td {
        border-color: var(--border-color);
        color: var(--text-dark);
    }

    table tbody tr {
        background-color: #2d2d2d;
    }

    table tbody tr:nth-child(even) {
        background-color: #373737;
    }

    table tbody tr:hover {
        background-color: #3a4a5a;
    }

    .comparison-header {
        background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%) !important;
        color: white;
    }

    .comparison-header .highlight-column {
        color: white;
    }

    .comparison-row {
        color: var(--text-dark);
    }

    input,
    textarea,
    select {
        background-color: var(--bg-light);
        color: var(--text-dark);
        border-color: var(--border-color);
    }

    input::placeholder,
    textarea::placeholder {
        color: var(--text-light);
    }

    /* Dark mode: Problem/Solution section */
    .problem-solution h2 {
        color: var(--text-dark);
    }

    .problem, .solution {
        background: #373737;
        color: var(--text-dark);
    }

    .problem ul li, .solution ul li {
        color: var(--text-dark);
    }

    /* Dark mode: Why Not Plex section */
    .why-not-plex {
        background: #2d2d2d;
    }

    .intro-text {
        color: var(--text-dark);
    }

    .benefit-item {
        background: #373737;
        color: var(--text-dark);
    }

    .benefit-content p {
        color: var(--text-dark);
    }

    /* Dark mode: Reality Check section */
    .reality-check {
        background: linear-gradient(135deg, rgba(247, 99, 12, 0.3) 0%, rgba(247, 99, 12, 0.2) 100%);
        border-left-color: rgba(247, 99, 12, 0.6);
        color: var(--text-dark-on-yellow);
    }

 

    .highlight-text {
        background: #373737;
        color: var(--secondary-color);
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0078d4 0%, #00188f 100%);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.feature-badge .icon {
    font-size: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-primary-large {
    background: var(--primary-color);
    color: white;
    padding: 20px 48px;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 120, 212, 0.4);
}

.btn-primary-large:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 120, 212, 0.5);
}

/* Microsoft Store Buttons */
.ms-store-button {
    display: inline-block;
    transition: all 0.3s ease;
}

.ms-store-button:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.ms-store-badge {
    height: 60px;
    width: auto;
    display: block;
}

.ms-store-button-inline {
    display: inline-block;
    transition: all 0.3s ease;
}

.ms-store-button-inline:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(0, 120, 212, 0.4));
}

.ms-store-badge-dark {
    height: 60px;
    width: auto;
    display: block;
}

.ms-store-button-large {
    display: inline-block;
    transition: all 0.3s ease;
}

.ms-store-button-large:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 12px 30px rgba(255, 255, 255, 0.3));
}

.ms-store-badge-large {
    height: 70px;
    width: auto;
    display: block;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Friendly Welcome Section */
.friendly-welcome {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.friendly-welcome::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 120, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.welcome-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.welcome-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.welcome-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.welcome-image:hover img {
    transform: scale(1.05);
}

.welcome-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.2;
}

.welcome-message {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.welcome-cta {
    margin-top: 40px;
}

/* Google Drive Exclusive Section */
.google-drive-exclusive {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}

@media (prefers-color-scheme: dark) {
    .google-drive-exclusive {
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    }
}
    color: white;
    position: relative;
    overflow: hidden;
}

.google-drive-exclusive::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(219, 112, 147, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.exclusive-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.exclusive-badge {
    display: inline-block;
    background: linear-gradient(135deg, #db7093 0%, #ff69b4 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(219, 112, 147, 0.4);
}

.google-drive-exclusive h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #db7093 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exclusive-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.exclusive-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.exclusive-feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(219, 112, 147, 0.2);
    transition: all 0.3s ease;
}

.exclusive-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(219, 112, 147, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(219, 112, 147, 0.2);
}

.exclusive-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.exclusive-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #db7093;
}

.exclusive-feature p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.why-google-drive {
    background: rgba(219, 112, 147, 0.1);
    border-left: 4px solid #db7093;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.why-google-drive h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ff69b4;
}

.why-google-drive p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.why-google-drive ul {
    list-style: none;
    margin-top: 20px;
}

.why-google-drive ul li {
    padding: 10px 0;
    font-size: 1.05rem;
    opacity: 0.9;
}

/* Cloud Providers Showcase Section */
.providers-showcase {
    padding: 100px 0;
    background: var(--bg-white);
}

.providers-showcase h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.showcase-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.provider-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.provider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
    background: var(--bg-white);
}

.provider-logo-container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 15px;
}

.provider-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.provider-logo-placeholder {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 300;
    opacity: 0.5;
}

.provider-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.exclusive-label {
    display: inline-block;
    background: linear-gradient(135deg, #db7093 0%, #ff69b4 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.provider-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.providers-benefit {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0057ba 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.providers-benefit h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.providers-benefit p {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 80px 0;
    background: var(--bg-white);
}

.problem-solution h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--text-dark);
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.problem, .solution {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.problem {
    border-color: rgba(247, 99, 12, 0.2);
}

.solution {
    border-color: rgba(16, 124, 16, 0.2);
}

.problem h3 {
    color: var(--warning-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.solution h3 {
    color: var(--success-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.problem ul, .solution ul {
    list-style: none;
}

.problem ul li, .solution ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.problem ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--warning-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.solution ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-white);
}

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-card img {
    width: 100%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 10px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Xbox Section */
.xbox-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #107c10 0%, #0e5c0e 100%);
    color: white;
}

.xbox-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.xbox-section .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.xbox-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.xbox-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.xbox-features {
    list-style: none;
}

.xbox-features li {
    padding: 15px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.xbox-features li:last-child {
    border-bottom: none;
}

.xbox-features strong {
    color: var(--secondary-color);
}

.xbox-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.xbox-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Additional Features */
.additional-features {
    padding: 80px 0;
    background: white;
}

.additional-features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.features-list {
    display: grid;
    gap: 30px;
}

.feature-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: center;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #ffa500;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Sharing Section */
.sharing-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.sharing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sharing-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.sharing-image img {
    width: 100%;
    height: auto;
    display: block;
}

.sharing-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sharing-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.sharing-text ul {
    list-style: none;
    margin-bottom: 25px;
}

.sharing-text ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
}

.sharing-text ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    border-radius: 12px;
    font-weight: 600;
}

/* Comparison Table */
.comparison {
    padding: 80px 0;
    background: var(--bg-white);
}

.comparison h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-intro {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.comparison-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin: 60px 0 30px 0;
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 16px;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    align-items: stretch;
    color: var(--text-dark);
    background: var(--bg-white);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: rgba(0, 120, 212, 0.03);
}

.feature-name {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    position: sticky;
    left: 0;
    background: inherit;
    padding-right: 16px;
    z-index: 2;
}

.comparison-row:nth-child(even) .feature-name {
    background: rgba(0, 120, 212, 0.03);
}

.column-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.highlight-column,
.comparison-side-column {
    padding: 16px 18px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--text-dark);
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-column {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.15), rgba(80, 230, 255, 0.1));
    border: 1px solid rgba(0, 120, 212, 0.15);
}

.comparison-side-column {
    background: var(--comparison-muted);
    border: 1px solid var(--border-color);
}

.comparison-detail {
    margin-top: 6px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.5;
}

.check {
    color: var(--success-color);
    font-size: 1.3rem;
    font-weight: bold;
    margin-right: 8px;
}

.cross {
    color: var(--warning-color);
    font-size: 1.3rem;
    font-weight: bold;
    margin-right: 8px;
}

/* Why Not Plex Section */
.why-not-plex {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-label {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plex-comparison-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.2;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.1), rgba(80, 230, 255, 0.1));
    border-radius: 12px;
}

.benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.reality-check {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-left: 4px solid var(--warning-color);
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
}

    .reality-check h3 {
        font-size: 1.8rem;
        color: var(--text-dark-on-yellow);
        margin-bottom: 20px;
    }

    .reality-check p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--text-dark-on-yellow);
        margin-bottom: 20px;
    }

.reality-check ul {
    margin: 20px 0;
    padding-left: 30px;
}

.reality-check ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark-on-yellow);
    margin-bottom: 10px;
}

.highlight-text {
    background: white;
    padding: 20px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0078d4 0%, #00188f 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.download-info {
    margin-top: 25px;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Social Networks Section */
.social-networks-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.social-networks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 120, 212, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.social-networks-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(80, 230, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.social-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.social-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.social-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.social-card {
    background: var(--bg-white);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.social-logo-container {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.1) 0%, rgba(80, 230, 255, 0.05) 100%);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.social-card:hover .social-logo-container {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.2) 0%, rgba(80, 230, 255, 0.1) 100%);
}

.social-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.social-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.social-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.social-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.social-card:hover .social-cta {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-social-links a:hover .footer-social-icon {
    opacity: 1;
    transform: scale(1.1);
}

.footer-company {
    font-size: 0.95rem;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-company a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-company a:hover {
    color: white;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-logo {
    width: 130px;
    height: auto;
    margin-bottom: 15px;
}

.footer-section {
    padding-right: 20px;
}

.footer-section p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #50e6ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #50e6ff;
}

.footer-bottom a {
    color: #50e6ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
    text-align: left;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .split-content,
    .xbox-content,
    .sharing-content,
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-content {
        grid-template-columns: 1fr;
    }

    .welcome-image {
        order: -1;
    }

    .social-header h2 {
        font-size: 2rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .features-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-name {
        font-weight: 700;
        background: var(--bg-light);
        padding: 10px;
        border-radius: 8px;
        position: static;
        margin-bottom: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-section {
        padding-right: 0;
    }

    .feature-item {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .comparison-subtitle {
        font-size: 1.2rem;
        margin: 40px 0 20px 0;
    }

    .plex-comparison-content h2 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .ms-store-button,
    .ms-store-button-inline,
    .ms-store-button-large {
        display: flex;
        justify-content: center;
    }

    .ms-store-badge {
        height: 50px;
    }

    .ms-store-badge-dark {
        height: 45px;
    }

    .ms-store-badge-large {
        height: 60px;
    }

    section {
        padding: 60px 0 !important;
    }

    .friendly-welcome,
    .why-not-plex {
        padding: 60px 0 !important;
    }

    .welcome-text h2 {
        font-size: 2rem;
    }

    .welcome-message {
        font-size: 1.1rem;
    }

    .benefit-item {
        flex-direction: column;
    }

    .reality-check {
        padding: 25px;
    }

    .reality-check h3 {
        font-size: 1.5rem;
    }

    .google-drive-exclusive h2 {
        font-size: 2rem;
    }

    .exclusive-content {
        grid-template-columns: 1fr;
    }

    .exclusive-feature {
        padding: 30px;
    }

    .why-google-drive {
        padding: 25px;
    }

    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .provider-card {
        padding: 30px 20px;
    }

    .providers-showcase h2 {
        font-size: 2rem;
    }

    .providers-benefit {
        padding: 30px;
    }

    .providers-benefit h3 {
        font-size: 1.5rem;
    }

    .showcase-intro {
        font-size: 1.05rem;
    }

    h2 {
        font-size: 2rem !important;
    }
}

/* Blazor specific styles */
h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* Mobile Footer */
@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-section h4 {
        font-size: 0.9rem;
    }

    .footer-section a,
    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}
}