:root {
    --primary-color: #ffffff;
    --background-color: #000000;
    --accent-color: #333333;
    --glow-color: rgba(255, 255, 255, 1);
    --nav-height: 64px;
}

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

/*html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--background-color);
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--primary-color);
    line-height: 1.6;
    font-weight: 300;
    min-width: 320px;
    -webkit-overflow-scrolling: touch;
}*/

html {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--background-color);
    overscroll-behavior: none;    
}

body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--background-color);
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--primary-color);
    line-height: 1.6;
    font-weight: 300;
    min-width: 320px;
    -webkit-overflow-scrolling: touch;
    z-index: 1; /* Add this line */
    overscroll-behavior: none;
}

.main-wrapper {
    position: relative;
    z-index: 1;
    background-color: var(--background-color);
}

body.menu-open {
    overflow: hidden;
}

.main-content {
    position: relative;
    z-index: 2;    
}

nav {
    height: var(--nav-height);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 200;
    background-color: var(--background-color);
}

.nav-container {    
    min-width: 320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    height: 32px;
    width: 32px;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.brand {
    font-family: 'MedievalSharp';
    font-size: 1.75rem;
    letter-spacing: 0.25em;
    text-decoration: none;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--glow-color);
    transition: opacity 0.3s ease;
}

.brand:hover {
    opacity: 0.8;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;    
}

.language-selector {
    position: relative;
/*    margin-right: 0.5rem;*/
}

.menu-button,
.menu-button:focus,
.menu-button:active,
.language-button,
.language-button:focus,
.language-button:active {
    color: var(--primary-color);
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    outline: none;
    touch-action: manipulation;
}

/* Language button specific */
.language-button {
    background: none;
    border: none;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-right: 0.5rem;
}

.language-button:hover {
    opacity: 0.8;    
}

.language-button.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: -1rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    min-width: 160px;
    transform-origin: top right;
    z-index: 250;
}

.language-dropdown.active {
    display: block;
    animation: dropdownFade 0.2s ease;
}

.language-dropdown-content {
    padding: 0.5rem;
}

.language-dropdown a {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.language-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-dropdown a.active {
    font-weight: 500;
}

.download-button {
    padding: 0.5rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    border: none;
    border-radius: 24px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    white-space: nowrap;
}

.download-button:hover {
    opacity: 0.9;
}

.menu-button {
    position: relative;
    width: 28px;  /* Add this back */
    height: 28px; /* Add this back */
    background: none;
    border: none;    
    cursor: pointer;
    transition: opacity 0.3s ease;
    line-height: 0;        
}

.menu-button:hover {
    opacity: 0.8;
}

.menu-button svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;   /* Match parent dimensions */
    height: 28px;  /* Match parent dimensions */
    transition: opacity 0.3s ease, transform 0.3s ease;
    stroke: var(--primary-color);    
}

.menu-button .menu-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.menu-button .close-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

.menu-button.active .menu-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.menu-button.active .close-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.menu-dropdown {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    overflow-y: auto;
    z-index: 190;
}

.menu-dropdown.active {
    visibility: visible;
    opacity: 1;
}

.menu-dropdown-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.menu-section {
    display: flex;
    flex-direction: column;
}

.menu-section h3 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.menu-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 300;
    padding: 0.5rem 0;
    transition: opacity 0.3s ease;
}

.menu-section a:hover {
    opacity: 0.7;
}

#sphere-container {
    position: fixed;
    top: 0;
    left: 0;
    /*width: 100%;
    height: 100%;*/
    width: calc(var(--vw) * 100);;
    height: calc(var(--vh) * 100);
    z-index: 1;
    pointer-events: none;
}

.banner {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: calc(-1 * var(--nav-height));
    padding-top: var(--nav-height);
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.banner-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 0 1.5rem;
}

.banner-text {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-section {
    text-align: center;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 1) 100%
    );
    padding: 4rem 0rem;
    position: relative;
    z-index: 10;
}

.hero-section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 1.5rem;
}

.hero-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.features-section {
    position: relative;
    z-index: 10;
    background: var(--background-color);
    padding: 6rem 0rem;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.features-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
}

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

.feature-box {
/*    background: rgba(255, 255, 255, 0.03);*/
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-box:hover {
/*    background: rgba(255, 255, 255, 0.05);*/
    transform: translateY(-2px);
}

.feature-box-content {
    padding: 1.5rem;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 1.5rem;
    align-items: start;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.icon-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.feature-box h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
    color: var(--primary-color);
}

.feature-box p {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.feature-image-container {
    width: 120px;
    position: relative;
    padding-top: 260px; /* Maintains 9:19.5 aspect ratio (120 * 19.5/9 = 260) */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.feature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-box-content {
        grid-template-columns: 1fr 100px;
        gap: 1.25rem;
    }

    .feature-image-container {
        width: 100px;
        padding-top: 216.67px; /* Maintains 9:19.5 aspect ratio */
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 4rem 0rem;
    }

    .features-content {
        padding: 0rem 1.0rem;
    }

    .features-content h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .feature-box-content {
        padding: 1.25rem;
        grid-template-columns: 1fr 80px;
        gap: 1rem;
    }

    .feature-image-container {
        width: 80px;
        padding-top: 173.33px; /* Maintains 9:19.5 aspect ratio */
    }
}

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

    .feature-box-content {
        grid-template-columns: 1fr 90px;
    }

    .feature-image-container {
        width: 90px;
        padding-top: 195px; /* Maintains 9:19.5 aspect ratio */
    }
}

.subscribe-section {
    position: relative;
    z-index: 2;
    background: var(--background-color);
    padding: 6rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.subscribe-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.subscribe-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.subscribe-content p {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.subscribe-form-wrapper {
    margin-bottom: 1rem;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    position: relative;
    max-width: 440px;
}

.form-group input[type="email"] {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.125rem 9rem 1.125rem 1.25rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.2s ease;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.form-group input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--background-color);
    border: none;
    border-radius: 8px;
    padding: 0.625rem 1.5rem;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    cursor: pointer;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.form-group button:hover {
    opacity: 0.9;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
    max-width: 440px;
}

.form-consent input[type="checkbox"] {
    margin-top: 0.3125rem;
    appearance: none;
    width: 1rem;
    height: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.form-consent input[type="checkbox"]:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.form-consent input[type="checkbox"]:checked::before {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--background-color);
    font-size: 0.75rem;
}

.form-consent label {
    font-size: 0.875rem;
    font-weight: 300;
    opacity: 0.8;
    line-height: 1.5;
}

.form-consent a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.2s ease;
}

.form-consent a:hover {
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .subscribe-section {
        padding: 4rem 1rem;
    }

    .subscribe-content h2 {
        font-size: 2rem;
    }

    .subscribe-content p {
        font-size: 1.1rem;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .form-group input[type="email"] {
        padding-right: 1.25rem;
    }

    .form-group button {
        position: static;
        transform: none;
        width: 100%;
        padding: 0.875rem;
    }
}

.site-map {
    position: relative;
    z-index: 2;
    background: var(--background-color);
    padding: 4rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-map-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4rem;
    text-align: center;
}


.site-map-section h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    opacity: 0.9;    
}

.site-map-section ul {
    list-style: none;
}

.site-map-section ul li {
    margin-bottom: 1rem;    
}

.site-map-section ul li a {
    color: var(--primary-color);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
    font-weight: 300;
}

.site-map-section ul li a:hover {
    opacity: 1;
}

.site-map-section ul li a.active {
  opacity: 1;
}

footer {
    position: relative;
    z-index: 2;
    background: var(--background-color);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#unicorn-container {
    width: 100%;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: -2rem 0;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 300;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .menu-dropdown-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-map-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.0rem;
    }

    .brand {
        font-size: 1.25rem;
    }

    .banner-text {
        font-size: 2.5rem;
    }

    .download-button {
        display: none;
    }

    .language-selector {
        display: block;
    }

    .menu-dropdown-content {
/*        grid-template-columns: 1fr;*/
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 1.0rem;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .site-map {
        padding: 4rem 1.0rem;
    }
     .site-map-content {
        text-align: left;
    }
    
    .site-map-section {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .banner-text {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }

    .logo-container {
        gap: 1rem;
    }
}

/* Privacy Page Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.privacy-content h2 {
    font-size: 1.75rem;
    font-weight: 300;
    margin: 2.5rem 0 1rem;
}

.privacy-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.privacy-content li {
    margin-bottom: 0.75rem;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: underline;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.mission-statement {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 1) 100%
    );
    position: relative;
    z-index: 10;
    font-family: 'IBM Plex Mono', monospace;
    font-style: italic;
    line-height: 1.8;
    font-size: 1.1rem;
    text-shadow: 0 0 20px var(--glow-color);
}

.mission-statement p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.mission-statement p:last-child {
    margin-bottom: 0;
}

/* Terms Page Styles */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.terms-content h2 {
    font-size: 1.75rem;
    font-weight: 300;
    margin: 3rem 0 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-content h2:first-of-type {
    border-top: none;
    padding-top: 0;    
    margin-top: 0;
}

.terms-content h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 2rem 0 1rem;
    opacity: 0.9;
}

.terms-content p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-weight: 300;
}

.terms-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.terms-content li {
    margin-bottom: 0.75rem;
    font-weight: 300;
    line-height: 1.7;
}

.terms-content a {
    color: var(--primary-color);
    text-decoration: underline;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.terms-content a:hover {
    opacity: 1;
}

.effective-date {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.section-break {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.logo-container,
.brand,
.language-button,
.menu-button,
.download-button {
    touch-action: manipulation;
    -webkit-touch-callout: none;  /* Prevents the default callout on long-press */
    -webkit-tap-highlight-color: transparent;  /* Removes tap highlight on iOS */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .privacy-content,
    .terms-content, .hero-section-content {
        padding: 3rem 1.0rem;
    }
    .banner-content {
        padding: 0rem 1.0rem;
    }
    
    .mission-statement {
        padding: 3rem 1.0rem;
        font-size: 1rem;
    }
}

.background-transition {
    background: var(--background-color);
    position: relative;
    z-index: 10;
    height: 4rem;
    margin-top: -4rem;
}

/* Only apply hover effects if the device supports hover */
@media (hover: hover) and (pointer: fine) {
    .menu-button:hover {
        opacity: 0.8;
    }
    
    .language-button:hover {
        opacity: 0.8;
    }
}

/* Remove hover styles for touch devices */
@media (hover: none) {
    .menu-button:hover,
    .language-button:hover {
        opacity: 1;
    }
}

/* FAQ Page Styles */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.faq-section {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 300;
    margin: 4rem 0 2rem;
}

.faq-section:first-child h2 {
    margin-top: 0;
}

.faq-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item {
    margin-bottom: 2.5rem;
}

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

.faq-item h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item h4 {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 1.5rem 0 0.75rem;
    color: var(--primary-color);
    opacity: 0.9;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0.8;
}

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

.faq-section:last-of-type {
    border-bottom: none;
}

.faq-footer {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.faq-footer p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.faq-footer a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.2s ease;
}

.faq-footer a:hover {
    border-color: var(--primary-color);
}

/* Responsive styles */
@media (max-width: 768px) {
    .faq-content {
        padding: 3rem 1rem;
    }

    .faq-section h2 {
        font-size: 1.75rem;
    }

    .faq-item h3 {
        font-size: 1.25rem;
    }

    .faq-item h4 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.95rem;
    }

    .faq-footer {
        margin-top: 3rem;
    }
}

.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: calc(-1 * var(--nav-height));
    padding-top: var(--nav-height);
    z-index: 10;
}

.video-banner-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--background-color);
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

.video-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 4rem 1.5rem;
    z-index: 3;
}

.video-text {
    font-family: 'MedievalSharp', serif;
    font-size: 12rem;
    line-height: 1;
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px var(--glow-color);
}

/* Keep your existing media queries */
@media (max-width: 1024px) {
    .video-text {
        font-size: 10rem;
    }
}

@media (max-width: 768px) {
    .video-content {
        padding: 3rem 1.0rem;
    }
    
    .video-text {
        font-size: 8rem;
    }
}

@media (max-width: 480px) {
    .video-text {
        font-size: 6rem;
    }
}