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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(30px) saturate(150%);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.5), transparent);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-img {
    height: 45px;
    width: auto;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 2px 8px rgba(0, 245, 255, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img:hover {
    filter: brightness(1.4) contrast(1.2) drop-shadow(0 4px 16px rgba(0, 245, 255, 0.5));
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 255, 0.1));
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-links a:hover {
    color: #00f5ff;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    transform: translateY(-1px);
}

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #00f5ff 50%, #0d7fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-badge {
    background: linear-gradient(45deg, rgba(0, 245, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 1px solid rgba(0, 245, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: linear-gradient(135deg, #00f5ff, #0d7fff);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 245, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 245, 255, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    border-color: #00f5ff;
    color: #00f5ff;
    background: rgba(0, 245, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 245, 255, 0.2);
}

.btn-primary.large, .btn-secondary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.app-mockup {
    width: 110%;
    height: auto;
    aspect-ratio: 16/10;
    background: #1a1a2e;
    border-radius: 16px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    margin-right: -5%;
}

.app-mockup:hover {
    transform: scale(1.03);
    box-shadow:
        0 50px 120px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(0, 245, 255, 0.3);
}

/* Hero Explanation Points */
.hero-explanation {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.explanation-point {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.point-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.explanation-point span:last-child {
    color: #e0e0e0;
    font-size: 1rem;
}

/* What Is Section */
.what-is-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(10px);
}

.what-is-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-is-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.simple-diagram {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.input-sources, .output-destinations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.source-item, .output-item {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.2);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-size: 0.9rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.output-item {
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid rgba(255, 0, 255, 0.2);
}

.source-item:hover, .output-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 245, 255, 0.2);
}

.grid-center {
    position: relative;
}

.grid-box {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #00f5ff, #0d7fff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 12px 36px rgba(0, 245, 255, 0.3);
}

.what-is-explanation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.explanation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.explanation-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.3);
}

.explanation-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.explanation-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

.key-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(255, 0, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.benefit-item h4 {
    font-size: 1.2rem;
    color: #00f5ff;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    color: #b0b0b0;
    line-height: 1.5;
}

/* Unified Grid Section */
.unified-grid {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
}

.unified-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grid-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.grid-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.grid-visual {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.page-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0.8rem 1rem;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
}

.page-label {
    color: #00f5ff;
    font-weight: 600;
    font-size: 0.9rem;
}

.page-dots {
    display: flex;
    gap: 0.5rem;
}

.page-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.page-dot.active {
    background: #00f5ff;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.grid-buttons {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.grid-button {
    background: rgba(60, 60, 60, 0.8);
    border: 1px solid rgba(80, 80, 80, 0.5);
    border-radius: 8px;
    padding: 0.8rem 0.3rem;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.3);
}

.button-number {
    color: #ffffff;
    font-weight: 600;
}

.status-indicator {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.status-indicator.ready {
    background: #4A90E2;
    box-shadow: 0 0 6px rgba(74, 144, 226, 0.6);
}

.status-indicator.queued {
    background: #FF8C00;
    box-shadow: 0 0 6px rgba(255, 140, 0, 0.6);
}

.status-indicator.live {
    background: #00FF88;
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Media Type Colors - Matching Screenshot */
.grid-button.empty {
    background: rgba(60, 60, 60, 0.8);
    border: 1px solid rgba(80, 80, 80, 0.5);
}

.grid-button.video {
    background: rgba(74, 144, 226, 0.3);
    border: 1px solid rgba(74, 144, 226, 0.5);
}

.grid-button.audio {
    background: rgba(255, 140, 0, 0.3);
    border: 1px solid rgba(255, 140, 0, 0.5);
}

.grid-button.youtube {
    background: rgba(255, 69, 58, 0.3);
    border: 1px solid rgba(255, 69, 58, 0.5);
}

.grid-button.overlay {
    background: rgba(255, 45, 85, 0.3);
    border: 1px solid rgba(255, 45, 85, 0.5);
}

.grid-button.content-builder {
    background: rgba(175, 82, 222, 0.3);
    border: 1px solid rgba(175, 82, 222, 0.5);
}

.grid-button.image {
    background: rgba(255, 204, 0, 0.3);
    border: 1px solid rgba(255, 204, 0, 0.5);
}

/* Legend Styling */
.legend-section {
    margin-bottom: 2rem;
}

.legend-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.legend-grid, .status-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.legend-color.video {
    background: rgba(74, 144, 226, 0.8);
}

.legend-color.audio {
    background: rgba(255, 140, 0, 0.8);
}

.legend-color.image {
    background: rgba(255, 204, 0, 0.8);
}

.legend-color.overlay {
    background: rgba(255, 45, 85, 0.8);
}

.legend-color.youtube {
    background: rgba(255, 69, 58, 0.8);
}

.legend-color.content-builder {
    background: rgba(175, 82, 222, 0.8);
}

.legend-color.empty {
    background: rgba(60, 60, 60, 0.8);
}

.legend-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.legend-status.ready {
    background: #4A90E2;
    box-shadow: 0 0 6px rgba(74, 144, 226, 0.6);
}

.legend-status.queued {
    background: #FF8C00;
    box-shadow: 0 0 6px rgba(255, 140, 0, 0.6);
}

.legend-status.live {
    background: #00FF88;
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
    animation: pulse 2s infinite;
}

.media-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.media-type {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.media-type:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.3);
}

.type-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.media-type h4 {
    color: #00f5ff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.media-type p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.grid-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    background: rgba(0, 245, 255, 0.1);
    border-color: rgba(0, 245, 255, 0.3);
}

.benefit h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit p {
    color: #b0b0b0;
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(120%);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(0, 245, 255, 0.08), rgba(255, 0, 255, 0.04));
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 245, 255, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Dual Resolution Section */
.dual-resolution {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
}

.dual-resolution h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dual-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.resolution-demo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.resolution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.preview-window, .output-window {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    min-width: 280px;
}

.window-header {
    text-align: center;
    font-weight: 600;
    color: #00f5ff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.preview-content {
    background: rgba(0, 245, 255, 0.1);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.preview-grid {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.preview-sync {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 500;
}

.sync-arrow {
    font-size: 2rem;
    color: #00f5ff;
    display: flex;
    align-items: center;
}

.output-content {
    position: relative;
}

.container-box {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    min-height: 180px;
}

.container-label {
    position: absolute;
    top: -12px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.content-box {
    background: rgba(0, 245, 255, 0.2);
    border: 2px solid rgba(0, 245, 255, 0.5);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem;
    position: relative;
}

.content-label {
    text-align: center;
    font-weight: 600;
    color: #00f5ff;
    font-size: 0.9rem;
}

.resolution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.resolution-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.resolution-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 0, 255, 0.1);
    border-color: rgba(255, 0, 255, 0.3);
}

.resolution-feature h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.resolution-feature p {
    color: #b0b0b0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.resolution-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.spec-column {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.spec-column h3 {
    color: #00f5ff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.resolution-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resolution-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.res-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.res-value {
    color: #ffffff;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.benefits-list li {
    color: #b0b0b0;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* Screenshot Gallery */
.screenshot-gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.03) 0%, rgba(255, 0, 255, 0.03) 100%);
}

.screenshot-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.screenshot-main {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.screenshot-main:hover {
    transform: translateY(-5px);
    background: rgba(0, 245, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
}

.screenshot-device {
    width: 100%;
    height: auto;
    min-height: 300px;
    background: #16213e;
    border-radius: 16px;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    object-fit: cover;
}

.screenshot-device:hover {
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(0, 245, 255, 0.2),
        0 0 40px rgba(0, 245, 255, 0.1);
}

.screenshot-detail {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.screenshot-detail:hover {
    transform: translateY(-5px);
    background: rgba(255, 0, 255, 0.08);
    border-color: rgba(255, 0, 255, 0.3);
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.15);
}

.screenshot-interface {
    width: 100%;
    height: auto;
    min-height: 300px;
    background: #1a1a2e;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    object-fit: cover;
}

.screenshot-interface:hover {
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 0, 255, 0.2),
        0 0 40px rgba(255, 0, 255, 0.1);
}

.screenshot-caption {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 500;
    line-height: 1.4;
}

.screenshot {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Performance Section */
.performance-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
}

.performance-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00f5ff, #0d7fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.performance-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.performance-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.performance-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.3);
}

.performance-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.performance-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.performance-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00f5ff, #0d7fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Professional Strengths Section */
.professional-strengths {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.professional-strengths h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.strength-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.strength-card.highlight:hover {
    transform: translateY(-10px);
    background: rgba(0, 245, 255, 0.1);
    border-color: rgba(0, 245, 255, 0.3);
}

.strength-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.strength-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #00f5ff;
}

.strength-card ul {
    list-style: none;
}

.strength-card li {
    padding: 0.4rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 1.5rem;
}

.strength-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

/* Market Position Section */
.market-position {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
}

.market-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.market-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00f5ff, #0d7fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.target-markets h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.market-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.market-tag {
    background: rgba(0, 245, 255, 0.2);
    border: 1px solid rgba(0, 245, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #ffffff;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
    border-color: rgba(0, 245, 255, 0.5);
    background: rgba(0, 245, 255, 0.1);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00f5ff, #0d7fff);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00f5ff, #0d7fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.price-subtitle {
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

/* Downloads Section */
.downloads {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.downloads h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.downloads-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.3);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.download-card p {
    color: #b0b0b0;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.version, .size {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    color: #00f5ff;
}

.download-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 150px;
}

.download-text {
    font-size: 1rem;
}

.download-subtext {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.2rem;
}

.download-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.note-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
}

.note-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.note-card p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Specs Section */
.specs {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.specs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spec-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.spec-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #00f5ff;
}

.spec-card ul {
    list-style: none;
}

.spec-card li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-card li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
}

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

.footer-logo-img {
    height: 32px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: brightness(1.1) contrast(1.0);
    opacity: 0.9;
}

.footer-logo p {
    color: #b0b0b0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00f5ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .what-is-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .what-is-explanation {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .key-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .resolution-specs {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .app-mockup {
        transform: none;
    }
    
    .app-mockup:hover {
        transform: scale(1.02);
    }
    
    .screenshot-main, .screenshot-detail {
        padding: 1.5rem;
    }
    
    .grid-demo {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Stream Publisher Section */
.stream-publisher {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(22, 33, 62, 0.4) 100%);
}

.section-header-with-image {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.section-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00f5ff, #0d7fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.stream-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.stream-feature {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.stream-feature:hover {
    background: linear-gradient(145deg, rgba(0, 245, 255, 0.08), rgba(255, 0, 255, 0.05));
    border-color: rgba(0, 245, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.15);
}

.stream-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stream-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #00f5ff;
}

.integration-info {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.integration-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0d7fff;
}

/* Cross-Platform Section */
.cross-platform {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(16, 16, 30, 0.7) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.section-with-visual {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.visual-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0d7fff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 0, 255, 0.4);
    transform: translateY(-4px);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0d7fff;
}

.platform-card ul {
    list-style: none;
}

.platform-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.platform-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00f5ff;
    font-weight: bold;
}

.cross-platform-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.benefit-highlight {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 245, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.benefit-highlight h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #00f5ff;
}

.pricing-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.pricing-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Performance Section */
.performance-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.performance-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.performance-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.performance-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Downloads Page Styling */
.download-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.free-badge {
    font-size: 0.8rem;
    background: linear-gradient(135deg, #00f5ff, #0d7fff);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.downloads-grid.compact {
    grid-template-columns: repeat(2, 1fr);
}

.download-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.download-card.compact {
    padding: 2rem;
}

.download-card:hover {
    background: linear-gradient(145deg, rgba(0, 245, 255, 0.08), rgba(13, 127, 255, 0.05));
    border-color: rgba(0, 245, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.15);
}

.platform-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.platform-badge.mac {
    background: rgba(0, 245, 255, 0.15);
    color: #00f5ff;
    border: 1px solid rgba(0, 245, 255, 0.3);
}

.platform-badge.windows {
    background: rgba(13, 127, 255, 0.15);
    color: #0d7fff;
    border: 1px solid rgba(13, 127, 255, 0.3);
}

.download-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.download-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.download-info {
    margin-bottom: 1.5rem;
}

.download-info .size {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.download-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Mobile responsiveness for new sections */
@media (max-width: 768px) {
    .stream-features-grid {
        grid-template-columns: 1fr;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .cross-platform-benefits {
        grid-template-columns: 1fr;
    }

    .pricing-notes {
        grid-template-columns: 1fr;
    }

    .section-header-with-image,
    .section-with-visual,
    .performance-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-text h2,
    .section-content h2,
    .performance-text h2 {
        font-size: 2rem;
    }

    .downloads-grid,
    .downloads-grid.compact {
        grid-template-columns: 1fr;
    }
}