* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e63946;
    --secondary: #f72585;
    --dark: #1d1d1f;
    --darker: #0a0a0a;
    --light: #f8f9fa;
    --border: #333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Animation */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.05;
}

/* Navbar */
.navbar {
    background: rgba(29, 29, 31, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rec-icon {
    color: var(--primary);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.hero-description {
    max-width: 900px;
    margin: 2rem auto 3rem;
    text-align: left;
    background: rgba(29, 29, 31, 0.6);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-badge .icon {
    font-size: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.5);
}

/* Programs Grid */
.programs-grid {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

@media (min-width: 1800px) {
    .program-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .program-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) and (max-width: 1399px) {
    .program-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.program-card {
    background: rgba(29, 29, 31, 0.8);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.1), transparent);
    transition: left 0.5s;
}

.program-card:hover::before {
    left: 100%;
}

.program-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.2);
}

.program-card.featured {
    border-color: var(--primary);
    border-width: 2px;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-badge.free {
    background: #4ade80;
}

.card-badge.pro {
    background: #facc15;
    color: #000;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.card-desc {
    color: #aaa;
    margin-bottom: 1.5rem;
    min-height: 60px;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 0;
}

.card-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.card-features li {
    padding: 0.5rem 0;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.card-buttons {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-primary, .btn-secondary {
    flex: 1;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: rgba(29, 29, 31, 0.5);
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 2rem;
}

.comparison-table {
    overflow-x: auto;
    border-radius: 15px;
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(29, 29, 31, 0.8);
}

th, td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

th {
    background: var(--primary);
    color: white;
    font-weight: 700;
}

td:first-child {
    text-align: left;
    font-weight: 600;
}

.highlight {
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    font-weight: 700;
}

/* Download Grid */
.download-all {
    padding: 80px 0;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.download-card {
    background: rgba(29, 29, 31, 0.8);
    border: 2px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s;
}

.download-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.download-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.download-card h3 {
    margin-bottom: 1rem;
}

.download-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
}

/* SEO Content Section */
.seo-content {
    padding: 80px 0;
    background: rgba(29, 29, 31, 0.3);
}

.seo-content .hero-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.seo-content .hero-description h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.seo-content .hero-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ddd;
}

/* Footer */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    margin-top: 80px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Program Pages */
.program-hero {
    padding: 60px 20px;
}

.program-logo {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.program-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.meta-item {
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
}

.program-about {
    background: rgba(29, 29, 31, 0.5);
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 15px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.large-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
}

.features-detailed {
    padding: 80px 0;
}

.features-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: rgba(29, 29, 31, 0.8);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.system-requirements {
    padding: 80px 0;
    background: rgba(29, 29, 31, 0.5);
    border-radius: 15px;
    margin: 60px 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.req-column {
    background: rgba(29, 29, 31, 0.8);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
}

.req-column.recommended {
    border-color: var(--primary);
    border-width: 2px;
}

.req-column h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}

.req-column ul {
    list-style: none;
}

.req-column li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #ccc;
}

.download-section {
    padding: 80px 0;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.download-box {
    background: rgba(29, 29, 31, 0.8);
    border: 2px solid var(--border);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

.download-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.2);
}

.download-box.featured {
    border-color: var(--primary);
    border-width: 3px;
}

.download-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
}

.download-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.download-desc {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.download-features {
    list-style: none;
    margin: 1.5rem 0;
}

.download-features li {
    padding: 0.5rem 0;
    color: #ccc;
}

.download-info {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #888;
}

.btn-download {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.5);
}

.btn-download.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-download.secondary:hover {
    background: var(--primary);
    color: white;
}

.alternatives {
    padding: 80px 0;
}

.alt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.alt-card {
    background: rgba(29, 29, 31, 0.8);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s;
}

.alt-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.alt-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.alt-card h4 {
    margin-bottom: 0.5rem;
}

.alt-card p {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        padding: 1.5rem;
        margin: 1.5rem auto 2rem;
    }
    
    .hero-description p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .program-cards {
        grid-template-columns: 1fr;
    }
    
    .card-buttons {
        flex-direction: column;
    }
    
    table {
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
    }
    
    th, td {
        padding: 0.5rem 0.3rem;
        white-space: nowrap;
    }
    
    .program-meta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .requirements-grid,
    .download-options {
        grid-template-columns: 1fr;
    }
}

