/* ==========================================================================
   1. Reset, Base Styles & Font Imports
   ========================================================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Use 'auto' during development if smooth scrolling is annoying */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0d0e12;
    color: #F0F0F0;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Self-hosted Inter Font */
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('../assets/fonts/inter-v19-latin-300.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../assets/fonts/inter-v19-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../assets/fonts/inter-v19-latin-700.woff2') format('woff2');
}

/* Self-hosted Outfit Font */
@font-face {
    font-display: swap;
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 900;
    src: url('../assets/fonts/outfit-v14-latin-900.woff2') format('woff2');
}


/* ==========================================================================
   2. Utility & Helper Classes
   ========================================================================== */

/* Class to prevent scrolling when a modal or mobile menu is open */
body.no-scroll {
    overflow: hidden !important;
}

/* General Button Styles */
.btn {
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-dark {
    background-color: transparent;
    color: #e0e0e0;
}

.btn-dark:hover {
    transform: translateY(-2px);
    color: #346bff;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    padding: 1rem 1.4rem;
    background-color: #346bff;
    color: whitesmoke;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, color 0.3s ease;
    box-shadow: 0 0 6.66px 3.33px rgb(0 0 0 / 39%);
}

.cta-button:hover {
    background-color: #346bff;
    transform: translateY(-3px);
    box-shadow: 0 0 10px 4px rgba(52, 107, 255, 0.5);
    color: #050505;
}

/* Trailer Button (used in Hero) */
.btn-trailer {
    background-color: transparent;
    color: whitesmoke;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 1.4rem;
    transition: color 0.3s ease;
}

.btn-trailer:hover {
    color: #346bff;
}

/* General Section Styling */
.section {
    padding: 2rem 2rem;
    text-align: center;
    background-color: #0d0e12;
}

.section h2 {
    font-size: 3rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.section a {
    text-decoration: none;
}


/* ==========================================================================
   3. Main Component Styles
   ========================================================================== */

/* ===== Navbar ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 17.5rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 125px;
    transition: top 0.4s ease-in-out, background-color 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.navbar-ontop {
    background-color: transparent;
}

.navbar:not(.navbar-ontop) {
    background-color: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 72px;
    width: auto;
    transition: filter 0.3s ease;
}

.logo-img:hover {
    filter: invert(50%);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    letter-spacing: 6.66px;
    font-size: 2rem;
    padding-left: 1rem;
    font-weight: 900;
    color: #ffffff;
}

/* Desktop Nav Links */
.nav-center .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    text-transform: uppercase;
    font-weight: 600;
    align-items: center;
}

.nav-links a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:hover {
    color: #346bff;
}

.nav-links a.active {
    color: #346bff;
    font-weight: 700;
}

/* Burger Menu (Hidden on Desktop) */
.burger {
    display: none;
}

/* Desktop Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: rgba(18, 18, 18, 0.664);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    z-index: 999;
    min-width: 180px;
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    visibility: hidden;
}

.dropdown:hover .dropdown-menu,
.dropdown .dropdown-menu.show {
    opacity: 1;
    transform: translateX(-50%) translateY(3px);
    pointer-events: auto;
    visibility: visible;
}

.dropdown-menu li {
    margin: 5px;
}

.dropdown-menu a {
    color: #E0E0E0;
    font-size: 0.95rem;
    display: block;
    padding: 0.6rem 1.2rem;
    text-transform: none;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #346bff;
    border-radius: 8px;
    color: #ffffff;
}

.mobile-login-item {
    display: none;
}

/* Login Page Specific Styles */
.login-forms-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-forms-wrapper .container form button.cta-button {
    /* Override specific login styles to get the proper glow */
    background-color: #346bff;
    color: whitesmoke;
    border: none;
    padding: 1em 1.8em;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 0 6.66px 3.33px rgb(0 0 0 / 39%);
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.login-forms-wrapper .container form button.cta-button:hover {
    background-color: #346bff;
    transform: translateY(-3px);
    box-shadow: 0 0 10px 4px rgba(52, 107, 255, 0.5);
    color: #050505;
}

.form-description {
    color: #A0A0A0;
    font-size: 1rem;
    margin-top: -1em;
    margin-bottom: 2em;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .333;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    max-width: 666px;
}

.hero p {
    font-size: 1.3rem;
    margin: 1.5rem auto;
    color: #D0D0D0;
    max-width: 700px;
}

/* Smaller Hero Variant (e.g., for Plans Page) */
.hero.hero-small {
    height: 60vh;
    min-height: 400px;
}

.hero.hero-small .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero.hero-small .hero-content p {
    font-size: 1.1rem;
    margin: 1rem auto;
}

.hero.hero-login {
    height: 100vh;
    min-height: 0;
}

/* ===== Feature Grid (Alternating Layout) ===== */
.feature-grid-extended {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    max-width: 1400px;
    margin: 0 auto;
}

/* Default to stacked/mobile layout */
.feature-item {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    /* Stacked by default */
    align-items: center;
    gap: 2rem;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.feature-content {
    flex: 1;
}

.feature-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Outfit';
    text-align: center;
    /* Center text by default */
}

.feature-item p {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.7;
    text-align: center;
    /* Center text by default */
}

.feature-media {
    width: 100%;
    max-width: 666px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Apply side-by-side layout for desktops (992px and wider) */
@media (min-width: 992px) {
    .feature-item {
        flex-direction: row;
        /* Side-by-side on desktop */
        text-align: left;
        padding: 3.5rem;
    }

    .feature-item:nth-child(even) {
        flex-direction: row-reverse;
        /* Alternate for variety */
    }

    .feature-content {
        /* Add padding to create space between text and media */
        padding-right: 2rem;
    }

    .feature-item:nth-child(even) .feature-content {
        padding-right: 0;
        padding-left: 2rem;
    }

    .feature-item h3,
    .feature-item p {
        text-align: left;
        /* Align text left on desktop */
    }

    .feature-media {
        width: 50%;
        /* Media takes up half the space */
        max-width: 600px;
    }
}

/* ===== Generic Grid (Used for simple features) ===== */
.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1500px;
    margin: 0 auto;
}

#features .grid div {
    background: #0A0A0A;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
    font-weight: 500;
    color: #E0E0E0;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 0 6.66px 3.33px rgb(0 0 0 / 39%);
}

#features .grid div:hover {
    transform: translateY(-8px);
    background-color: #121212;
    border-color: rgba(204, 0, 255, 0.3);
}

/* ===== Pricing Section ===== */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.discount-rules,
.perpetual-license {
    color: #A0A0A0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.discount-rules:hover,
.perpetual-license:hover {
    color: #346bff;
}

.info-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 1px solid #A0A0A0;
    border-radius: 50%;
    text-align: center;
    line-height: 1em;
    font-size: 0.8em;
    margin-left: 0.3em;
    vertical-align: middle;
}

.pricing-toggle {
    display: flex;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2C2C2C;
}

.toggle-button {
    background-color: transparent;
    border: none;
    color: #F0F0F0;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
}

.toggle-button.active {
    background-color: #346bff;
    color: #ffffff;
}

.save-tag {
    background-color: #ffaa00;
    color: #050505;
    padding: 0.2em 0.6em;
    border-radius: 4px;
    font-size: 0.75em;
    margin-left: 0.5rem;
    font-weight: bold;
    vertical-align: middle;
}

.plan {
    background: #0d0e12;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #2C2C2C;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 0 20px 0px rgb(0 0 0 / 39%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    min-height: 500px;
    position: relative;
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 6.66px 3.33px rgb(0 0 0 / 39%);
    border-color: #346bff;
}

.plan h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.plan p {
    margin-bottom: 2rem;
    color: #ffffff;
    flex-grow: 1;
}

.plan ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.plan ul li::before {
    content: none !important;
}

.plan .cta-button {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 1.1rem;
    border: none;
    text-align: center;
}

.plan-more {
    padding-top: 1rem;
    color: #A0A0A0;
}

/* Plan-specific colors */
.free_plan {
    color: rgb(255, 255, 255);
}

.indie_plan {
    color: #34ff3e;
}

.pro_plan {
    color: #ff34bb;
}

.teams_plan {
    color: #ffaa00;
}

/* Highlight for Pro Plan */
.pro-plan-highlight {
    border-color: #346bff;
    transform: translateY(-10px);
    box-shadow: 0 0 15px 5px rgba(52, 107, 255, 0.3);
}

.pro-plan-highlight:hover {
    transform: translateY(-15px);
    box-shadow: 0 0 25px 8px rgba(52, 107, 255, 0.5);
}

.most-value-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #346bff;
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 12px;
    font-size: 0.888rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.0666em;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Teams Plan Specifics */
.teams-plan {
    background-color: #121212;
    border-color: #ffaa00;
}

.teams-plan .cta-button {
    background-color: #ffaa00;
    color: #050505;
}

.teams-plan .cta-button:hover {
    background-color: #e69500;
    color: #050505;
}

/* Price visibility for toggle */
.price-monthly,
.price-annual {
    display: none;
}

.price-monthly.price-current,
.price-annual.price-current {
    display: block;
    font-size: 1.333rem;
}

.billing-period {
    font-size: 0.8em;
    color: #A0A0A0;
    display: block;
    margin-top: 0.2em;
}

/* ===== Plan Comparison Table ===== */
.plan-comparison-table-container {
    margin: 4rem auto 0 auto;
    max-width: 1400px;
    text-align: center;
    overflow-x: auto;
}

.plan-comparison-table-container h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-family: 'Outfit';
}

.plan-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #0A0A0A;
    border-radius: 8px;
    overflow: hidden;
}

.plan-comparison-table th,
.plan-comparison-table td {
    padding: 1.2rem;
    text-align: center;
    border: 1px solid #346bff1f;
    white-space: nowrap;
}

.plan-comparison-table th {
    background-color: #1a1a1a;
    /* color: #ffffff; */
    font-weight: 700;
    font-size: 1.5rem;
}

.free_plan_table {
    color: white;
}

.indie_plan_table {
    color: #34ff3e;
}

.pro_plan_table {
    color: #ff34bb;
}

.teams_plan_table {
    color: #ffaa00;
}

.plan-comparison-table tbody tr:nth-child(even) {
    background-color: #0F0F0F;
}

.plan-comparison-table td {
    color: #E0E0E0;
    font-size: 1rem;
    background-color: #1a1a1a;
}


/* ===== FAQ Section ===== */
.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background-color: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #346bff;
    box-shadow: 0 0 6.66px 3.33px rgb(0 0 0 / 39%);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #346bff;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: inherit;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: bold;
    color: #346bff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    background-color: #0d0e12;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-answer p {
    padding: 1.5rem 0;
    margin: 0;
    color: #D0D0D0;
    line-height: 1.8;
    text-align: justify;
}

/* ===== Technology Info Section ===== */
.technology-section {
    background-color: #346bff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.technology-section h2:hover {
    color: #050505;
}

.technology-section .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    max-width: 1400px;
    text-align: left;
    gap: 4rem;
}

.technology-section .left-column {
    flex: 2;
    max-width: 600px;
}

.technology-section .left-column p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #F0F0F0;
    margin-bottom: 2rem;
}

.technology-section .right-column {
    flex: 1;
    max-width: 300px;
    text-align: right;
}

.technology-section .small-heading-right {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #A0A0A0;
    margin-bottom: 1rem;
    display: block;
    text-align: right;
}

.technology-section .feature-list {
    list-style: none;
    padding: 0;
}

.technology-section .feature-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #F0F0F0;
    margin-bottom: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
}

/* ===== Program Compatibility Section ===== */
.compatibility-description {
    font-size: 1.3rem;
    margin: 1.5rem auto 3rem auto;
    color: #D0D0D0;
    max-width: 800px;
    text-align: center;
    line-height: 1.6;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.compatibility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
}

.compatibility-item img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(100%) brightness(1.5);
    transition: filter 0.3s ease;
}

.compatibility-item:hover img {
    filter: none;
}

.compatibility-item .program-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #F0F0F0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== Footer ===== */
footer {
    background-color: #121212;
    padding: 2rem;
    text-align: center;
    color: #A0A0A0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: #346bff;
}


/* ==========================================================================
   4. Page-Specific Styles
   ========================================================================== */

/* ===== Contact Page ===== */
.contact-section {
    padding: 4rem 2rem;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #121212;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgb(4 4 4);
    text-align: left;
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #346bff;
    font-size: 2.5rem;
    /* Explicit size */
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #F0F0F0;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.888rem;
    border: 1px solid #346bff21;
    border-radius: 8px;
    background-color: #1e1e1e;
    color: #F0F0F0;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #6699ff;
    box-shadow: 0 0 0 3px rgba(52, 107, 255, 0.3);
    outline: none;
}

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

.contact-form-container .cta-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
    /* Hidden by default */
    transition: opacity 0.3s ease;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background-color: #28a745;
    color: #ffffff;
}

.form-message.error {
    background-color: #dc3545;
    color: #ffffff;
}

.form-message.sending {
    background-color: #ffc107;
    color: #333333;
}


/* ===== Download Page ===== */
.download-page-content {
    padding-top: 125px;
    /* Match navbar height */
    background-color: #0d0e12;
    color: #F0F0F0;
    min-height: 100vh;
}

.download-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.download-info {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.download-info h1 {
    font-size: 4.5rem;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.download-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #D0D0D0;
    line-height: 1.7;
}

.download-info .version-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1rem;
    color: #A0A0A0;
}

.download-info .release-notes {
    color: #346bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.download-info .release-notes:hover {
    color: #6699ff;
}

.download-info .release-notes i {
    margin-right: 0.5rem;
}

.download-cards-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
    max-width: 700px;
}

.download-card {
    background-color: #121212;
    border: 1px solid #346bff21;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-8px);
    border-color: #346bff;
    box-shadow: 0 0 15px rgba(52, 107, 255, 0.4);
}

.download-card .os-label {
    font-size: 0.9rem;
    color: #A0A0A0;
    text-transform: uppercase;
    font-weight: 600;
}

.download-card .os-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 0.5rem;
}

.download-card .os-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.download-card .cta-button {
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    width: auto;
}

.download-card .file-size {
    font-size: 0.9rem;
    color: #A0A0A0;
}

/* Download Resources Section */
.download-resources {
    padding: 4rem 2rem;
}

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

.resource-item {
    background-color: #121212;
    border: 1px solid #346bff21;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    color: #F0F0F0;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.resource-item:hover {
    transform: translateY(-5px);
    background-color: #1A1A1A;
    border-color: #346bff;
}

.resource-item .resource-icon {
    font-size: 3rem;
    color: #346bff;
    margin-bottom: 0.5rem;
}

/* Older Versions List */
.older-versions {
    padding: 4rem 2rem;
}

.version-list {
    max-width: 800px;
    margin: 0 auto;
}

.version-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.2rem 2rem;
    margin-bottom: 1rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.version-row:hover {
    background-color: #1A1A1A;
    border-color: #346bff21;
}

.version-row span {
    color: #E0E0E0;
    font-size: 1.05rem;
    margin-right: 1.5rem;
    white-space: nowrap;
}

.version-row .version-number {
    font-weight: 700;
    color: #346bff;
}

.version-row .release-date {
    color: #A0A0A0;
}

.version-row .release-notes {
    color: #346bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: 1.5rem;
    white-space: nowrap;
}

.version-row .release-notes i {
    margin-right: 0.5rem;
}

.version-row .download-link {
    background-color: #346bff;
    color: whitesmoke;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.version-row .download-link:hover {
    background-color: #2a52cc;
    transform: translateY(-2px);
}


/* ===== Learn Page (Video Gallery) ===== */
.learn-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem 2rem;
}

.learn-info h1 {
    font-size: 4.5rem;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.learn-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #D0D0D0;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px;
    max-width: 666px;
    margin: 0 auto;
}

.video-item {
    background-color: #121212;
    /* Darker than body */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #346bff21;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 107, 255, 0.3);
    border-color: #346bff;
}


.video-thumbnail-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    cursor: pointer;
    background-color: #000;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.video-thumbnail-container:hover .video-thumbnail {
    opacity: 0.7;
}

.video-thumbnail-container .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
    pointer-events: none;
}


.video-thumbnail-container:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-thumbnail-container iframe,
.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.video-info h3 {
    color: #F0F0F0;
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 0.05rem;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s ease;
}

.video-item:hover .video-info h3 {
    color: #346bff;
}

.video-info p {
    color: #A0A0A0;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}


/* ===== Changelog Section ===== */
#changelogs ul {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    list-style: none;
    padding: 0;
}

#changelogs li {
    background-color: #1e1e1e;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: #E0E0E0;
}

/* Scrollable Changelog Container */
.changelog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2em 1.5em;
    border-radius: 14px;
    max-height: 400px;
    /* Set a fixed height for vertical scrolling */
    overflow-y: auto;
    /* Enable vertical scrollbar */
    position: relative;
}

.changelog-container::-webkit-scrollbar {
    width: 8px;
}

.changelog-container::-webkit-scrollbar-track {
    background: #282828;
    border-radius: 10px;
}

.changelog-container::-webkit-scrollbar-thumb {
    background: #d1d1d1;
    border-radius: 10px;
}

.changelog-container::-webkit-scrollbar-thumb:hover {
    background: #346bff;
}

.changelog-item-list {
    background-color: #121212;
    padding: 1em 1.5em;
    margin-bottom: 1em;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.98rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.changelog-item-list:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: #346bff;
}

.changelog-item-list strong {
    color: #ffffff;
    font-size: 1.1rem;
}

.changelog-item-list strong:hover {
    color: #346bff;
    font-size: 1.1rem;
}

.changelog-item-list span {
    color: #A0A0A0;
    font-size: 0.85rem;
}

.changelog-item:last-child {
    margin-bottom: 0;
}

.changelog-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.changelog-version-date strong {
    color: #346bff;
    font-size: 1.1rem;
}

.changelog-version-date span {
    color: #A0A0A0;
    font-size: 0.85rem;
}

.changelog-changes li {
    background-color: transparent;
    border: none;
    padding: 0.2em 0;
    margin-bottom: 0;
    font-size: 0.95rem;
    box-shadow: none;
    display: list-item;
}

.changelog-changes li::before {
    content: none;
}

.changelog-error {
    color: #ff6b6b;
    text-align: center;
    padding: 1em;
}


/* ==========================================================================
   5. Modal Styles
   ========================================================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show-modal {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #1a1a1a;
    margin: auto;
    padding: 30px;
    border: 1px solid #346bff21;
    border-radius: 12px;
    width: 90%;
    max-width: 888px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    color: #F0F0F0;
    animation: fadeInScale 0.33s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #346bff;
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.modal-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
    color: #E0E0E0;
}

.close-button {
    color: #A0A0A0;
    font-size: 2.5rem;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-button:hover,
.close-button:focus {
    color: #ffffff;
    text-decoration: none;
}


/* ==========================================================================
   6. Responsive Media Queries (Grouped)
   ========================================================================== */

/* Large Desktops (reducing padding) */
@media (max-width: 1440px) {
    .navbar {
        padding: 0 3rem;
    }
}

/* Small Desktops / Large Tablets */
@media (max-width: 992px) {
    .feature-grid-extended {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column !important;
        /* Use important to override inline styles from nth-child */
        text-align: center;
        padding: 0;
        /* padding: 3rem 2rem; */
    }

    .feature-content {
        padding: 0 !important;
    }

    .feature-item h3,
    .feature-item p {
        text-align: center;
    }

    .feature-media {
        width: 100%;
        max-width: 600px;
    }

    .download-hero {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 4rem 1.5rem;
    }

    .download-info {
        max-width: 100%;
        text-align: center;
    }

    .download-info h1 {
        font-size: 3.5rem;
    }

    .download-info p {
        font-size: 1.1rem;
    }

    .download-info .version-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .download-cards-container {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        width: 100%;
    }

    .download-card {
        width: 100%;
        max-width: 350px;
    }

    .resource-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .older-versions h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .version-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.5rem;
        gap: 0.5rem;
    }

    .version-row span,
    .version-row a {
        margin-right: 0;
    }

    .version-row .release-notes {
        margin-left: 0;
    }

    .version-row .download-link {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* Tablets & Mobile */
@media (max-width: 768px) {
    .section h2 {
        font-size: 2.5rem;
    }

    /* Navbar for Mobile */
    .navbar {
        padding: 0 1.5rem;
        height: 80px;
    }

    .logo-img {
        height: 48px;
    }

    .logo-text {
        font-size: 1.3rem;
        padding-left: 0.5rem;
        letter-spacing: 2px;
    }

    .burger {
        display: block;
        width: 30px;
        position: relative;
        z-index: 1100;
        cursor: pointer;
    }

    .burger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #ffffff;
        margin: 5px 0;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }

    .burger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .burger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-center {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background-color: rgba(18, 18, 18, 0.9);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 80px 1rem 1.5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.6);
        z-index: 1050;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .nav-center.show {
        transform: translateX(0);
    }

    .nav-center .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .desktop-login-item {
        display: none;
    }

    .mobile-login-item {
        display: block;
        margin-top: 2rem;
        border-top: 1px solid #2C2C2C;
        padding-top: 2rem;
        width: 100%;
    }

    .mobile-login-item .btn {
        width: 100%;
        text-align: center;
    }

    /* Mobile Dropdown Layout */
    .dropdown {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: transparent;
        backdrop-filter: none;
        min-width: auto;
        padding: 0;
        border-radius: 0;
        border: none;
        transform: none !important;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: max-height 0.4s ease-in-out, padding-top 0.4s ease-in-out;
    }

    .dropdown-menu.show {
        max-height: 300px;
        padding-top: 0.5rem;
    }

    .dropdown-menu a {
        padding-left: 2.5rem !important;
        font-size: 0.95rem;
        color: #C0C0C0;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.25rem;
    }

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

    .hero.hero-small {
        height: 50vh;
        min-height: 300px;
    }

    .hero.hero-small .hero-content h1 {
        font-size: 2rem;
    }

    /* Pricing Toggle */
    .pricing-toggle-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* FAQ */
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-toggle {
        font-size: 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-answer p {
        padding: 1rem 0;
        text-align: left;
    }

    /* Technology Section */
    .technology-section .container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .technology-section .left-column,
    .technology-section .right-column {
        max-width: 100%;
        padding: 0 1rem;
        text-align: center;
    }

    .technology-section .small-heading-right,
    .technology-section .feature-list li {
        text-align: center;
    }

    /* Most Value Tag */
    .most-value-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

    /* Compatibility Section */
    .compatibility-description {
        font-size: 1.1rem;
        margin: 1rem auto 2rem auto;
    }

    .compatibility-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .compatibility-item {
        padding: 1rem 0.5rem;
    }

    .compatibility-item img {
        width: 80px;
        height: 80px;
        margin-bottom: 0.5rem;
    }

    .compatibility-item .program-name {
        font-size: 0.9rem;
    }

    /* Changelog Section */
    .changelog-container {
        padding: 1.5em;
        max-height: 350px;
    }

    .changelog-version-date {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2em;
    }

    /* Learn Page */
    .learn-hero {
        padding: 6rem 1.5rem 3rem 1.5rem;
    }

    .learn-info h1 {
        font-size: 3rem;
    }

    .learn-info p {
        font-size: 1.1rem;
    }

    .video-gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        padding: 20px;
        max-width: 1400px;
        margin: 0 auto;
    }


    .hero.hero-login {
        height: auto;
        /* Allow height to adjust on mobile */
        min-height: 100vh;
    }

    .login-forms-wrapper {
        height: auto;
        padding: 2em 1em;
        /* Add padding to prevent forms from touching the edges */
    }

    /* Add inside the @media (max-width: 768px) block */
    .login-forms-wrapper .container {
        padding: 2.5em 1.5em;
        /* Adjust padding for a better fit on mobile */
    }

    .login-forms-wrapper .container h2 {
        font-size: 2em;
        /* Smaller heading on mobile */
    }

    .login-forms-wrapper .container form .cta-button {
        font-size: 1.1em;
        padding: 0.9em 1.5em;
    }

    /* Add inside the @media (max-width: 480px) block for very small screens */
    .login-forms-wrapper .container {
        padding: 2em 1em;
        /* Further reduce padding on smaller devices */
    }
}

/* Small Mobile Devices */
@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .modal-content p {
        font-size: 1rem;
    }

    .close-button {
        font-size: 2rem;
        top: 5px;
        right: 10px;
    }

    .contact-form-container {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .download-info h1 {
        font-size: 2.8rem;
    }

    .download-info p {
        font-size: 1rem;
    }

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

    .older-versions h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   7. Legal/Text Page Styles
   ========================================================================== */

.legal-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem 3rem;
    text-align: left;
    background-color: #121212;
    border-radius: 8px;
    border: 1px solid rgba(52, 107, 255, 0.13);
    color: #D0D0D0;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #346bff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2C2C2C;
    text-align: left;
    font-family: 'Outfit', sans-serif;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #E0E0E0;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.legal-content p,
.legal-content li {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 1.5rem;
}

.legal-content a {
    color: #6699ff;
    text-decoration: none;
    font-weight: 600;
    transition: text-decoration 0.2s ease;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
}

/* Styles for the new Disclaimer Modal */
#disclaimer-image {
    display: block;
    /* Treat the image like a block to control its margin */
    margin: 1em auto;
    /* Top/bottom margin of 1em, and auto for left/right */
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    border: 1px solid #444;
}

#disclaimer-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    border-top: 1px solid #2C2C2C;
    padding-top: 1.5rem;
}

#DiscountModal img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 8px;
}

/* ==========================================================================
   8. Video Modal Styles
   ========================================================================== */

.video-modal-content {
    background-color: #000;
    padding: 0;
    /* Ensure no extra padding */
    width: 90%;
    max-width: 960px;
    height: auto;
    /* Allow height to adjust */
    overflow: hidden;
    /* Remove default animation to avoid flicker */
    animation: none;
    -webkit-animation: none;
    /* Center the modal content and manage its size */
    margin: auto;
    display: flex;
    /* Use flexbox to control content */
    align-items: center;
    /* Vertically center */
    justify-content: center;
    /* Horizontally center */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    width: 100%;
    /* Ensure it takes full width of its parent */
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Style for the close button on the video modal */
.video-modal-content .close-button {
    color: #fff;
    position: absolute;
    /* Position absolutely within the modal content */
    top: 10px;
    /* Adjust as needed */
    right: 15px;
    /* Adjust as needed */
    font-size: 3rem;
    z-index: 10;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}