/* Global Styles */
:root {
    --primary-color: #1e88e5; /* Darker blue for primary elements */
    --secondary-color: #0d47a1; /* Even darker blue for secondary elements */
    --accent-color: #ffab00; /* Amber/orange accent color */
    --dark-color: #161c24; /* Very dark blue-black for backgrounds */
    --light-color: #f8f9fa;
    --text-color: #e4e4e4;
    --card-bg: rgba(28, 35, 45, 0.8);
    --card-border: rgba(30, 136, 229, 0.3);
}

/* Performance optimizations for Core Web Vitals */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent layout shift for images */
.header-image,
.logo-image,
.tutorial-image img,
.overview-image-container img {
    aspect-ratio: attr(width) / attr(height);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('images/bg.webp');
    background-size: auto;
    background-position: center;
    background-repeat: repeat;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto 0;
}

section {
    padding: 5rem 0;
    position: relative;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 35, 45, 0.8) 0%, rgba(16, 20, 24, 0.9) 100%);
    z-index: -1;
}

.gradient-background:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(30, 136, 229, 0.2) 0%, transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(255, 171, 0, 0.15) 0%, transparent 70%);
}

.hero-content {
    padding: 2rem 0;
    z-index: 2;
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 0 15px rgba(30, 136, 229, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.header-image-container {
    position: relative;
    text-align: center;
    z-index: 2;
}

.header-image {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.floating-tag {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
    z-index: 3;
}

.tag-version {
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
}

.tag-feature {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

.hero-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    font-weight: normal;
    padding: 8px 12px;
    border-radius: 20px;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 136, 229, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(30, 136, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(30, 136, 229, 0);
    }
}

/* Navigation */
.gaming-nav {
    background-color: rgba(22, 28, 36, 0.95);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(30, 136, 229, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.brand-text {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-nav .nav-link i {
    font-size: 1.2rem;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color);
    background-color: rgba(30, 136, 229, 0.1);
}

/* Buttons */
.gaming-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.gaming-btn: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: all 0.5s ease;
}

.gaming-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.5);
}

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

.gaming-btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(255, 171, 0, 0.1);
}

.gaming-btn-secondary:hover {
    background-color: rgba(255, 171, 0, 0.1);
    box-shadow: 0 8px 25px rgba(255, 171, 0, 0.2);
}

/* Overview Section */
.overview-section {
    background-color: rgba(28, 35, 45, 0.85);
    border-top: 1px solid rgba(30, 136, 229, 0.1);
    border-bottom: 1px solid rgba(30, 136, 229, 0.1);
    position: relative;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: -1rem;
}

.overview-intro {
    margin-bottom: 2rem;
}

.overview-intro h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.overview-intro .lead {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.overview-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    background-color: rgba(22, 28, 36, 0.5);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.overview-feature-item:hover {
    transform: translateX(5px);
    background-color: rgba(30, 136, 229, 0.1);
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.feature-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.overview-image-container {
    position: relative;
    padding: 1rem;
    background-color: rgba(22, 28, 36, 0.5);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.overview-image-container img {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.overview-image-container:hover img {
    transform: scale(1.02);
}

.overview-stats {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.2), rgba(13, 71, 161, 0.3));
    margin-top: 1.5rem;
    border-radius: 10px;
    padding: 1.25rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(30, 136, 229, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991.98px) {
    .overview-image-container {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .overview-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .overview-feature-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }
}

.overview-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Feature Cards */
.feature-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.feature-card i {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(to bottom, rgba(28, 35, 45, 0.7), rgba(22, 28, 36, 0.9));
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Requirements Section */
.requirements-section {
    background-color: rgba(22, 28, 36, 0.8);
}

.requirements-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.requirements-card h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requirements-card ul {
    list-style-type: none;
    padding-left: 0;
}

.requirements-card li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 25px;
}

.requirements-card li:before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(to bottom, rgba(22, 28, 36, 0.95), rgba(28, 35, 45, 0.85));
    padding: 5rem 0;
    position: relative;
}

.faq-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(30, 136, 229, 0.15) 0%, transparent 70%),
                radial-gradient(circle at 30% 70%, rgba(255, 171, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.faq-accordion {
    position: relative;
    z-index: 2;
}

.faq-accordion .accordion-item {
    background-color: rgba(28, 35, 45, 0.8);
    border: 1px solid rgba(30, 136, 229, 0.2);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    border-color: rgba(30, 136, 229, 0.4);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.faq-accordion .accordion-button {
    padding: 1.25rem 1.5rem;
    background-color: rgba(22, 28, 36, 0.7);
    color: var(--text-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: rgba(28, 35, 45, 0.9);
    border-bottom: 1px solid rgba(30, 136, 229, 0.1);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(30, 136, 229, 0.4);
}

.faq-accordion .accordion-button i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-accordion .accordion-button:not(.collapsed) i {
    color: var(--accent-color);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e88e5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffab00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: 1.5rem;
    color: var(--text-color);
    background-color: rgba(28, 35, 45, 0.6);
}

.faq-accordion .accordion-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-accordion .accordion-body ul,
.faq-accordion .accordion-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.faq-accordion .accordion-body li {
    margin-bottom: 0.5rem;
}

.faq-accordion .accordion-body strong {
    color: var(--primary-color);
}

@media (max-width: 767.98px) {
    .faq-accordion .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-accordion .accordion-body {
        padding: 1.25rem;
    }
}

/* Download Section - Compact Version */
.download-section {
    background: linear-gradient(135deg, rgba(28, 35, 45, 0.85) 0%, rgba(16, 20, 24, 0.9) 100%);
    position: relative;
    padding: 4rem 0;
}

.download-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(30, 136, 229, 0.2) 0%, transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(255, 171, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.download-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.download-card-compact {
    background-color: rgba(28, 35, 45, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(30, 136, 229, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
}

.download-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.7), rgba(30, 136, 229, 0.3));
    border-bottom: 1px solid rgba(30, 136, 229, 0.3);
}

.download-logo {
    width: 60px;
    height: 60px;
    margin-right: 1.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    flex-shrink: 0;
}

.logo-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(30, 136, 229, 0.5));
}

.download-info {
    flex-grow: 1;
}

.download-info h3 {
    font-family: 'Orbitron', sans-serif;
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.4rem;
}

.download-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.download-meta span {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.version-tag {
    color: var(--primary-color);
}

.size-tag {
    color: var(--text-color);
}

.price-tag {
    color: var(--accent-color);
}

.download-cta {
    flex-shrink: 0;
    margin-left: 1rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color), darkorange);
    color: #000;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 171, 0, 0.3);
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 171, 0, 0.4);
    color: #000;
}

.download-tabs {
    padding: 0;
}

.nav-tabs {
    border-bottom: 1px solid rgba(30, 136, 229, 0.2);
    background-color: rgba(22, 28, 36, 0.5);
}

.nav-tabs .nav-item {
    margin-bottom: 0;
}

.nav-tabs .nav-link {
    color: var(--text-color);
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(30, 136, 229, 0.1);
    border: none;
}

.nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: rgba(28, 35, 45, 0.9);
    border: none;
    border-bottom: 2px solid var(--accent-color);
}

.tab-content {
        padding: 1.5rem;
    }

/* Features Tab */
.download-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-box {
    text-align: center;
    padding: 1.25rem 1rem;
    background-color: rgba(22, 28, 36, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    background-color: rgba(30, 136, 229, 0.1);
}

.feature-box i {
    font-size: 1.75rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.feature-box h4 {
        font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Requirements Tab */
.requirements-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.requirements-group {
    background-color: rgba(22, 28, 36, 0.5);
    padding: 1.25rem;
    border-radius: 10px;
}

.requirement-header {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.requirement-header:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1rem;
    background-color: var(--accent-color);
}

.requirements-list-compact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list-compact li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
        font-size: 0.9rem;
    display: flex;
    align-items: baseline;
}

.requirements-list-compact li span {
    font-weight: 600;
    color: var(--primary-color);
    width: 80px;
    display: inline-block;
    flex-shrink: 0;
}

/* Benefits Tab */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: rgba(22, 28, 36, 0.5);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background-color: rgba(30, 136, 229, 0.1);
}

.benefit-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.benefit-text h5 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .download-header {
        flex-direction: column;
        text-align: center;
    }

    .download-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }

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

    .download-meta {
        justify-content: center;
    }

    .download-cta {
        margin-left: 0;
    }

    .download-features-grid {
        grid-template-columns: 1fr;
    }

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

/* Testimonials Section */
.testimonials-section {
    background-color: rgba(22, 28, 36, 0.85);
    padding: 5rem 0;
    position: relative;
}

.testimonials-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(30, 136, 229, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(255, 171, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-wrapper {
    padding: 2rem 1rem;
    position: relative;
}

.testimonial-card {
    background-color: rgba(28, 35, 45, 0.85);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(30, 136, 229, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card.featured {
    border: 1px solid rgba(255, 171, 0, 0.3);
    background: linear-gradient(135deg, rgba(28, 35, 45, 0.9), rgba(16, 20, 24, 0.85));
}

.testimonial-card.featured:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.2rem;
    border: 2px solid rgba(30, 136, 229, 0.3);
    background-color: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.testimonial-card.featured .testimonial-avatar {
    border-color: rgba(255, 171, 0, 0.5);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-meta {
    flex-grow: 1;
}

.testimonial-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.testimonial-card.featured .testimonial-name {
    color: var(--accent-color);
}

.testimonial-source {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.testimonial-source i {
    font-size: 1rem;
    opacity: 0.8;
}

.testimonial-stars {
    color: #FFB400;
    font-size: 1.1rem;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid rgba(30, 136, 229, 0.3);
}

.testimonial-card.featured .testimonial-text {
    border-left-color: rgba(255, 171, 0, 0.5);
}

.testimonial-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background-color: rgba(30, 136, 229, 0.15);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.testimonial-card.featured .feature-tag {
    background-color: rgba(255, 171, 0, 0.15);
    color: var(--accent-color);
}

.feature-tag:hover {
    background-color: rgba(30, 136, 229, 0.25);
    transform: translateY(-2px);
}

.testimonial-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-align: right;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(30, 136, 229, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(30, 136, 229, 0.4);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.testimonial-indicators {
    position: relative;
    bottom: 0;
    margin-bottom: 0;
    margin-top: 2rem;
}

.testimonial-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(30, 136, 229, 0.3);
    border: none;
    margin: 0 5px;
}

.testimonial-indicators .active {
    background-color: var(--primary-color);
}

/* Testimonial Stats */
.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: rgba(28, 35, 45, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(30, 136, 229, 0.2);
}

@media (max-width: 991.98px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .testimonial-header {
        flex-direction: column;
    align-items: center;
        text-align: center;
    }

    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .testimonial-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

/* Footer Section */
.footer-section {
    background-color: rgba(16, 20, 24, 0.95);
    border-top: 1px solid rgba(30, 136, 229, 0.2);
    padding: 2.5rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(30, 136, 229, 0.1);
}

.footer-logo {
    max-width: 300px;
}

.footer-logo h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-logo p {
    color: var(--text-color);
        font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: var(--text-color);
    font-size: 0.85rem;
    opacity: 0.6;
    margin: 0;
}

@media (max-width: 767.98px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .navbar-nav {
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
}

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

    .feature-card,
    .requirements-card,
    .testimonial-card {
    margin-bottom: 1.5rem;
    }

    .step-item {
        flex-direction: column;
    }

    .step-number {
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

/* Extra Small Devices */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        margin-left: 0 !important;
    }

    .hero-badge {
        flex-direction: column;
        align-items: flex-start;
    }

    .tutorial-content h3,
    .benchmark-header h4,
    .feature-card-header h3 {
        font-size: 1.1rem;
    }

    .filter-buttons {
        gap: 0.3rem;
    }

    .filter-btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }

    .scaling-option-card {
        padding: 1rem;
    }

    .scaling-option-icon {
        min-width: 40px;
        width: 40px;
        height: 40px;
    }

    .benchmark-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .benchmark-row.highlight {
        padding-left: 0.5rem;
    }

    .transition-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Animation Effects */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Scaling Options Section */
.scaling-options-section {
    background-color: rgba(22, 28, 36, 0.85);
    padding: 5rem 0;
    position: relative;
}

.scaling-options-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(30, 136, 229, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(255, 171, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.scaling-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.scaling-option-card {
    background-color: rgba(28, 35, 45, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 136, 229, 0.2);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.scaling-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.scaling-option-card.proprietary {
    border-left: 3px solid var(--accent-color);
}

.scaling-option-card.proprietary:hover {
    border-color: var(--accent-color);
    background-color: rgba(255, 171, 0, 0.05);
}

.scaling-option-card.amd {
    border-left: 3px solid #ED1C24;
}

.scaling-option-card.amd:hover {
    border-color: #ED1C24;
    background-color: rgba(237, 28, 36, 0.05);
}

.scaling-option-card.nvidia {
    border-left: 3px solid #76B900;
}

.scaling-option-card.nvidia:hover {
    border-color: #76B900;
    background-color: rgba(118, 185, 0, 0.05);
}

.scaling-option-card.pixel {
    border-left: 3px solid #9C27B0;
}

.scaling-option-card.pixel:hover {
    border-color: #9C27B0;
    background-color: rgba(156, 39, 176, 0.05);
}

.scaling-option-card.anime {
    border-left: 3px solid #FF4081;
}

.scaling-option-card.anime:hover {
    border-color: #FF4081;
    background-color: rgba(255, 64, 129, 0.05);
}

.scaling-option-card.basic {
    border-left: 3px solid #607D8B;
}

.scaling-option-card.basic:hover {
    border-color: #607D8B;
    background-color: rgba(96, 125, 139, 0.05);
}

.scaling-option-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.scaling-option-card.proprietary .scaling-option-icon {
    background: linear-gradient(135deg, var(--accent-color), darkorange);
    box-shadow: 0 5px 15px rgba(255, 171, 0, 0.3);
}

.scaling-option-card.amd .scaling-option-icon {
    background: linear-gradient(135deg, #ED1C24, #aa1219);
    box-shadow: 0 5px 15px rgba(237, 28, 36, 0.3);
}

.scaling-option-card.nvidia .scaling-option-icon {
    background: linear-gradient(135deg, #76B900, #567d09);
    box-shadow: 0 5px 15px rgba(118, 185, 0, 0.3);
}

.scaling-option-card.pixel .scaling-option-icon {
    background: linear-gradient(135deg, #9C27B0, #6a1b9a);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.scaling-option-card.anime .scaling-option-icon {
    background: linear-gradient(135deg, #FF4081, #c60055);
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.3);
}

.scaling-option-card.basic .scaling-option-icon {
    background: linear-gradient(135deg, #607D8B, #455a64);
    box-shadow: 0 5px 15px rgba(96, 125, 139, 0.3);
}

.scaling-option-content {
    flex-grow: 1;
}

.scaling-option-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.scaling-option-card.proprietary .scaling-option-name {
    color: var(--accent-color);
}

.scaling-option-card.amd .scaling-option-name {
    color: #ED1C24;
}

.scaling-option-card.nvidia .scaling-option-name {
    color: #76B900;
}

.scaling-option-card.pixel .scaling-option-name {
    color: #9C27B0;
}

.scaling-option-card.anime .scaling-option-name {
    color: #FF4081;
}

.scaling-option-desc {
    color: var(--text-color);
    opacity: 0.8;
        font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.scaling-option-tag {
    display: inline-block;
    font-size: 0.7rem;
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    opacity: 0.7;
}

.scaling-options-filters {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.filter-label {
    color: var(--text-color);
    font-weight: 600;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.filter-btn {
    background-color: rgba(30, 136, 229, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(30, 136, 229, 0.2);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Comparison Table */
.scaling-comparison {
    margin-top: 3rem;
}

.comparison-title {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.comparison-table-container {
    overflow-x: auto;
    background-color: rgba(28, 35, 45, 0.7);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(30, 136, 229, 0.1);
}

.comparison-table th {
    background-color: rgba(30, 136, 229, 0.15);
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

.comparison-table tbody tr {
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background-color: rgba(30, 136, 229, 0.05);
}

@media (max-width: 991.98px) {
    .scaling-options-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .scaling-options-grid {
        grid-template-columns: 1fr;
    }

    .scaling-options-list {
        padding: 1.5rem;
    }

    .scaling-option-name,
    .scaling-option-desc {
        font-size: 0.95rem;
    }
}

/* Tutorials Section */
.tutorials-section {
    background: linear-gradient(to bottom, rgba(28, 35, 45, 0.85), rgba(22, 28, 36, 0.9));
    padding: 5rem 0;
    position: relative;
}

.tutorials-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(30, 136, 229, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(255, 171, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.tutorials-wrapper {
    position: relative;
    z-index: 2;
}

.tutorials-nav {
    background-color: rgba(28, 35, 45, 0.6);
    border-radius: 30px;
    padding: 0.5rem;
    display: inline-flex;
    margin-bottom: 2rem;
}

.tutorials-nav .nav-link {
    color: var(--text-color);
    border-radius: 20px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 0.2rem;
}

.tutorials-nav .nav-link:hover {
    color: white;
    background-color: rgba(30, 136, 229, 0.2);
}

.tutorials-nav .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

.tutorials-grid {
    margin-bottom: 2rem;
}

.enhanced-tutorial-card {
    background-color: rgba(28, 35, 45, 0.8);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(30, 136, 229, 0.2);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.enhanced-tutorial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.tutorial-image {
    position: relative;
    overflow: hidden;
}

.tutorial-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.enhanced-tutorial-card:hover .tutorial-image img {
    transform: scale(1.05);
}

.tutorial-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    z-index: 2;
    font-weight: 600;
}

.tutorial-label.beginner {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.tutorial-label.advanced {
    background: linear-gradient(135deg, #F44336, #C62828);
}

.tutorial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.enhanced-tutorial-card:hover .tutorial-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 70%);
}

.tutorial-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.enhanced-tutorial-card:hover .tutorial-play-icon {
    color: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.tutorial-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.tutorial-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.enhanced-tutorial-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.enhanced-tutorial-card:hover h3 {
    color: var(--accent-color);
}

.enhanced-tutorial-card p {
    color: var(--text-color);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.tutorial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.tutorial-views {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.tutorial-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tutorial-link i {
    transition: transform 0.3s ease;
}

.tutorial-link:hover {
    color: white;
}

.tutorial-link:hover i {
    transform: translateX(3px);
}

.tutorials-cta {
    background-color: rgba(28, 35, 45, 0.7);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 3rem;
}

.tutorials-cta h4 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.tutorials-cta p {
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

@media (max-width: 991.98px) {
    .tutorials-nav {
    width: 100%;
    }

    .tutorials-nav .nav-link {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .tutorials-nav {
        flex-wrap: wrap;
    }

    .enhanced-tutorial-card {
        margin-bottom: 1.5rem;
    }

    .tutorial-content {
        padding: 1.2rem;
    }

    .enhanced-tutorial-card h3 {
        font-size: 1.2rem;
    }
}

/* News Section - Optimized */
.news-section {
    background-color: rgba(28, 35, 45, 0.85);
    padding: 5rem 0;
}

.news-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    margin-bottom: 2rem;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.news-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.news-card.featured-news {
    border-left: 4px solid var(--accent-color);
}

.news-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    border-bottom-left-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.news-meta {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-category {
    display: inline-block;
    background-color: rgba(30, 136, 229, 0.15);
    color: var(--primary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.news-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.news-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.news-card p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

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

.news-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.news-link:after {
    content: '→';
    transition: transform 0.3s ease;
}

.news-link:hover {
    color: white;
}

.news-link:hover:after {
    transform: translateX(5px);
}

.news-tags {
    display: flex;
    gap: 0.5rem;
}

.news-tag {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--accent-color);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-outline-primary {
    color: var(--primary-color);
    background-color: transparent;
    border: 2px solid var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-outline-primary i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-outline-primary:hover i {
    transform: translateX(5px);
}

@media (max-width: 767.98px) {
    .news-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .news-tags {
        flex-wrap: wrap;
    }
}

/* Store Badges */
.store-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease;
    font-weight: 600;
}

.store-badge i {
    font-size: 1.4rem;
}

.store-badge:hover {
    background-color: rgba(30, 136, 229, 0.2);
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Contact Info */
.contact-info {
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Media Queries for new sections */
@media (max-width: 991.98px) {
    .scaling-option-item {
        flex-direction: column;
        align-items: flex-start;
    gap: 0.5rem;
    }

    .news-card,
    .tutorial-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .scaling-options-list {
        padding: 1.5rem;
    }

    .scaling-option-name,
    .scaling-option-desc {
        font-size: 0.95rem;
    }

    .news-card h3 {
        font-size: 1.3rem;
    }
}

/* Features Section */
.features-section {
    background-color: rgba(22, 28, 36, 0.9);
    position: relative;
    overflow: hidden;
}

.features-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(30, 136, 229, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 90% 90%, rgba(255, 171, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.features-wrapper {
    position: relative;
    z-index: 2;
}

.enhanced-feature-card {
    background-color: rgba(28, 35, 45, 0.85);
    border-radius: 12px;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 136, 229, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.enhanced-feature-card.featured {
    border: 1px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 171, 0, 0.15);
}

.enhanced-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    border-color: var(--primary-color);
}

.enhanced-feature-card.featured:hover {
    border-color: var(--accent-color);
}

.feature-card-header {
    padding: 1.5rem 1.5rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(30, 136, 229, 0.1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.3);
}

.enhanced-feature-card.featured .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--accent-color), darkorange);
    box-shadow: 0 10px 20px rgba(255, 171, 0, 0.3);
}

.feature-card-header h3 {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.enhanced-feature-card.featured .feature-card-header h3 {
    color: var(--accent-color);
}

.feature-card-body {
    padding: 1.5rem;
}

.feature-card-body p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.enhanced-feature-card.featured .feature-list li:before {
    color: var(--accent-color);
}

.feature-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(30, 136, 229, 0.2);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 1px;
}

.enhanced-feature-card.featured .feature-card-badge {
    background-color: rgba(255, 171, 0, 0.2);
    color: var(--accent-color);
}

@media (max-width: 767.98px) {
    .enhanced-feature-card {
        margin-bottom: 1.5rem;
    }

    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .feature-card-header h3 {
        font-size: 1.2rem;
    }
}

/* Feature Cards - Original */

/* Performance Benchmarks Section */
.performance-section {
    background-color: rgba(22, 28, 36, 0.9);
    padding: 5rem 0;
    position: relative;
}

.performance-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 70%, rgba(30, 136, 229, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(255, 171, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.benchmark-intro {
    padding: 2rem;
    background-color: rgba(28, 35, 45, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(30, 136, 229, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.benchmark-intro h3 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 1.8rem;
}

.benchmark-intro .lead {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.benchmark-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.benchmark-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background-color: rgba(22, 28, 36, 0.5);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.benchmark-highlights li:hover {
    transform: translateX(5px);
    background-color: rgba(30, 136, 229, 0.1);
}

.benchmark-highlights li i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.benchmark-highlights li span {
    color: var(--text-color);
    font-weight: 600;
}

.chart-container {
    background-color: rgba(28, 35, 45, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(30, 136, 229, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.chart-title {
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.chart {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.chart-bar {
    display: flex;
    align-items: center;
}

.chart-label {
    flex: 0 0 120px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.chart-track {
    flex: 1;
    height: 30px;
    background-color: rgba(22, 28, 36, 0.5);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.chart-fill {
    height: 100%;
    border-radius: 15px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
}

.chart-fill.native {
    background: linear-gradient(90deg, #0d47a1, #1976d2);
}

.chart-fill.ls1 {
    background: linear-gradient(90deg, #1e88e5, #29b6f6);
}

.chart-fill.fsr {
    background: linear-gradient(90deg, #d32f2f, #f44336);
}

.chart-fill.lsfg {
    background: linear-gradient(90deg, #ff6f00, #ffab00);
}

.chart-fill.gain {
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
}

.chart-value {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.benchmark-cards {
    margin-top: 2rem;
}

.benchmark-card {
    background-color: rgba(28, 35, 45, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(30, 136, 229, 0.2);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benchmark-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.benchmark-header {
    background-color: rgba(22, 28, 36, 0.7);
    padding: 1.25rem;
    border-bottom: 1px solid rgba(30, 136, 229, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.benchmark-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.benchmark-tag {
    background-color: rgba(30, 136, 229, 0.15);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.benchmark-data {
    padding: 1.5rem;
    flex-grow: 1;
}

.benchmark-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    background-color: rgba(22, 28, 36, 0.5);
}

.benchmark-row.highlight {
    background-color: rgba(255, 171, 0, 0.15);
    border-left: 3px solid var(--accent-color);
}

.benchmark-row .label {
    color: var(--text-color);
    font-weight: 600;
}

.benchmark-row .value {
    color: white;
    font-weight: 700;
}

.benchmark-row .gain {
    color: #4CAF50;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.benchmark-footer {
    padding: 1.25rem;
    border-top: 1px solid rgba(30, 136, 229, 0.1);
    background-color: rgba(22, 28, 36, 0.5);
}

.benchmark-footer p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.benchmark-explanation {
    background-color: rgba(28, 35, 45, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(30, 136, 229, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: 0 auto;
}

.explanation-title {
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.explanation-item {
    background-color: rgba(22, 28, 36, 0.5);
    border-radius: 10px;
        padding: 1.5rem;
    transition: all 0.3s ease;
}

.explanation-item:hover {
    transform: translateY(-5px);
    background-color: rgba(30, 136, 229, 0.1);
}

.explanation-item i {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.explanation-item h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.explanation-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .chart-label {
        flex: 0 0 100px;
        font-size: 0.85rem;
    }

    .benchmark-intro,
    .chart-container {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .explanation-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benchmark-card {
        margin-bottom: 1.5rem;
    }

    .chart-label {
        flex: 0 0 90px;
        font-size: 0.8rem;
    }
}

/* Transition Section */
.transition-section {
    background: linear-gradient(135deg, rgba(22, 28, 36, 0.9), rgba(28, 35, 45, 0.8));
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.transition-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(30, 136, 229, 0.15) 0%, transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(255, 171, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.transition-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.transition-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(30, 136, 229, 0.3);
}

.transition-icon i {
    font-size: 2.5rem;
    color: white;
}

.transition-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.transition-text {
    color: var(--text-color);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.transition-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.transition-stat {
    display: flex;
        flex-direction: column;
    align-items: center;
}

.transition-stat .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.transition-stat .stat-label {
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 767.98px) {
    .transition-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .transition-title {
        font-size: 1.8rem;
    }

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

/* Breadcrumb Navigation */
.breadcrumb-container {
    background-color: rgba(16, 20, 24, 0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(30, 136, 229, 0.1);
}

.breadcrumb {
    margin-bottom: 0;
    padding: 0.25rem 0;
}

.breadcrumb-item, .breadcrumb-item a {
    color: var(--text-color);
    font-size: 0.85rem;
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* Tablet Optimization */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .navbar-nav {
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }

    /* Tablet improvements */
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }

    .header-image-container {
        margin-top: 2rem;
    }

    .floating-tag {
        right: 0;
        bottom: 20px;
        transform: rotate(0);
    }

    .section-padding {
        padding: 3rem 0;
    }

    .features-wrapper .row,
    .benchmark-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .enhanced-feature-card,
    .benchmark-card {
        height: 100%;
        margin-bottom: 0;
    }

    .download-header {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .download-logo {
        margin-right: 1.25rem;
        margin-bottom: 0;
    }

    .download-info {
        margin-bottom: 0;
    }

    .comparison-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .navbar-toggler {
        padding: 0.5rem 0.75rem;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(255, 171, 0, 0.25);
    }
}

/* Mobile Optimization */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .feature-card,
    .requirements-card,
    .testimonial-card {
        margin-bottom: 1.5rem;
    }

    .step-item {
        flex-direction: column;
    }

    .step-number {
        margin-bottom: 1rem;
        margin-right: 0;
    }

    /* Mobile improvements */
    section {
        padding: 3rem 0;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .hero-title {
        text-align: center;
    }

    .hero-subtitle,
    .hero-description {
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-badge {
        justify-content: center;
    }

    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .download-section .nav-tabs .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .download-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .scaling-option-name {
        font-size: 1rem;
    }

    .scaling-option-desc {
        font-size: 0.85rem;
    }

    .faq-accordion .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }

    .footer-links ul {
        gap: 1rem;
    }

    /* Touch-friendly improvements */
    .nav-link,
    .btn,
    .filter-btn,
    .download-btn,
    .store-badge,
    .footer-links a {
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .gaming-nav .navbar-nav .nav-link {
        border-bottom: 1px solid rgba(30, 136, 229, 0.1);
    }
}

/* Extra Small Devices */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        margin-left: 0 !important;
    }

    .hero-badge {
        flex-direction: column;
        align-items: flex-start;
    }

    .tutorial-content h3,
    .benchmark-header h4,
    .feature-card-header h3 {
        font-size: 1.1rem;
    }

    .filter-buttons {
        gap: 0.3rem;
    }

    .filter-btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }

    .scaling-option-card {
        padding: 1rem;
    }

    .scaling-option-icon {
        min-width: 40px;
        width: 40px;
        height: 40px;
    }

    .benchmark-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .benchmark-row.highlight {
        padding-left: 0.5rem;
    }

    .transition-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Navigation Improvements */
.navbar-toggler {
    border: none;
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 171, 0, 0.25);
}

.download-nav-link {
    background-color: rgba(255, 171, 0, 0.15);
    color: var(--accent-color) !important;
    margin-top: 0.5rem;
    border-radius: 30px !important;
    transition: all 0.3s ease;
}

.download-nav-link:hover {
    background-color: var(--accent-color);
    color: black !important;
}

@media (max-width: 991.98px) {
    .download-nav-link {
        margin: 0.5rem 0;
    }
}

/* Download section improvements */
@media (max-width: 767.98px) {
    .download-btn {
        width: 100%;
        justify-content: center;
    }

    .store-badge {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .download-tabs .nav-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
    }

    .download-tabs .nav-tabs .nav-link {
        white-space: nowrap;
        font-size: 0.85rem;
    }

    .download-tabs .tab-content {
        padding: 1.25rem 1rem;
    }
}

/* Touch-friendly improvements */
