:root {
    --primary-red: rgb(151, 0, 0);
    --primary-red-hover: rgb(120, 0, 0);
    --primary-green: rgb(34, 49, 29);
    --bg-cream: #F0E7DA;
    --text-white: #FFFFFF;
    --text-shadow: 1px 1px #404040;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(12px);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --lalezar-font: 'Lalezar Font', Arial, Helvetica, sans-serif;
}

/* Loading spinner styles */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-white);
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

button:disabled,
input[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed !important;
}

/* Remove text shadow from feedback modal */
#feedbackModal h2,
#feedbackModal h3,
#feedbackModal p,
#feedbackModal label,
#feedbackModal span {
    text-shadow: none !important;
}



/* Global Box Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    box-sizing: border-box;
}

@media (max-width:768px) {
    .container {
        padding: 20px
    }
}

@media (max-width:480px) {
    .container {
        padding: 12px
    }
}

@media (max-width:375px) {
    .container {
        padding: 8px
    }
}

@media (max-width:320px) {
    .container {
        padding: 6px
    }
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 0
}

@media (max-width:768px) {
    header {
        padding: 12px 0
    }
}

@media (max-width:480px) {
    header {
        padding: 8px 0;
        gap: 12px
    }
}

@media (max-width:375px) {
    header {
        padding: 6px 0;
        gap: 8px
    }
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap
}

@media (max-width:480px) {
    .brand {
        width: 100%;
        justify-content: flex-start;
        gap: 8px
    }
}

@media (max-width:375px) {
    .brand {
        gap: 6px
    }
}

.logo-img {
    max-width: 120px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width:480px) {
    .logo-img {
        max-width: 90px;
    }
}

@media (max-width:375px) {
    .logo-img {
        max-width: 80px;
    }
}

@media (max-width:320px) {
    .logo-img {
        max-width: 40px
    }
}

/* nav{display:flex;
            gap:12px;
            flex-wrap:wrap;
            align-items:center
        } */

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.5rem;
    flex-wrap: wrap;
}

nav button {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--primary-red);
    background: var(--primary-red);
    /*color: var(--text-white);*/
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 14px;
    font-weight: 600;
    min-width: 80px;
}

nav button:hover {
    background: var(--primary-red-hover);
    border-color: var(--primary-red-hover);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(151, 0, 0, 0.3);
}

@media (max-width: 480px) {
    nav {
        padding: 0.8rem 0.3rem;
        gap: 0.6rem;
    }

    nav button {
        padding: 0.5rem 0.8rem;
        font-size: 12px;
        min-width: 70px;
    }
}

@media (max-width: 375px) {
    nav button {
        padding: 0.4rem 0.6rem;
        font-size: 11px;
        min-width: 60px;
    }
}

@media (max-width: 320px) {
    nav {
        gap: 0.5rem;
    }

    nav button {
        padding: 0.4rem 0.5rem;
        font-size: 10px;
        min-width: 55px;
    }
}

/* Desktop navigation */
.desktop-nav {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Mobile navigation */
.mobile-nav {
    display: none;
    position: relative;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }
}

/* Hide/Show Elements */
@media (max-width:768px) {
    .hide-mobile {
        display: none
    }

    .show-mobile {
        display: block
    }

    /* Mobile navigation */
    .mobile-nav {
        position: relative;
    }

    .mobile-menu-dropdown {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        /*background: var(--bg);*/
        background-color: white;
        /*border: 1px solid var(--border);*/
        border-radius: 12px;
        /*box-shadow: 0 8px 24px var(--shadow);*/
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        z-index: 100;
        animation: slideDown 0.3s ease-out;
        /*background: rgba(255, 255, 255, 0.2);*/
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .mobile-nav.mobile-open .mobile-menu-dropdown {
        display: flex;
    }

    .mobile-menu-dropdown .btn {
        width: 100%;
        justify-content: center;

    }

    .mobile-menu-dropdown .btn:hover {
        width: 100%;
        justify-content: center;

    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }
}

@media (max-width: 480px) {
    .mobile-menu-dropdown {
        width: 180px;
        padding: 12px;
        gap: 8px;
        top: calc(100% + 6px);

    }
}

@media (max-width: 375px) {
    .mobile-menu-dropdown {
        width: 160px;
        padding: 10px;
        gap: 6px;
        top: calc(100% + 4px);

    }
}

@media (min-width:769px) {
    .show-mobile {
        display: none
    }
}

/* Footer */
footer {
    padding: 32px 0;
    color: white;
    font-size: small;
}

@media (max-width:768px) {
    footer {
        padding: 24px 0
    }
}

@media (max-width:480px) {
    footer {
        padding: 20px 0
    }
}

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

@media (max-width:768px) {
    .footer-content {
        gap: 8px
    }
}

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

@media (max-width:375px) {
    .footer-content {
        gap: 12px
    }
}

.footer-links {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap
}

@media (max-width:768px) {
    .footer-links {
        gap: 8px
    }
}

@media (max-width:480px) {
    .footer-links {
        width: 100%;
        justify-content: center;
        gap: 12px
    }
}

@media (max-width:375px) {
    .footer-links {
        gap: 8px
    }
}

/* Sections */
section {
    padding: 48px 0;
    border-top: 1px solid var(--border)
}

@media (max-width:768px) {
    section {
        padding: 32px 0
    }
}

@media (max-width:480px) {
    section {
        padding: 24px 0
    }
}

@font-face {
    font-family: 'Lalezar Font';
    src: url('fonts/Lalezar-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    height: 100%;
    margin: 0;
    background-image: url(https://www.ltrd.space/images/Background%20Overlay%2010px.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Subtle Film Grain Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

header {
    /* background-color: rgb(22 24 51); */
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

footer {
    /* background-color: rgb(22 24 51); */
    width: 100%;
    margin-top: 5rem;
}

@media (max-width: 768px) {
    header {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

* {
    font-family: var(--lalezar-font);
    text-transform: uppercase;
    text-align: center;
}

h1 {
    /*color:  rgb(34,49,29);*/
    color: var(--text-white);
    /*-webkit-text-stroke: 0.5px #000000;*/
    font-weight: bold;
    text-shadow: var(--text-shadow);
}

h2,
h3 {
    /*color:  rgb(22 24 51);*/
    color: var(--text-white);
    /*-webkit-text-stroke: 0.3px #000000;*/
    font-weight: bold;
    text-shadow: var(--text-shadow);
}

p {
    /*color:rgb(22 24 51);*/
    color: var(--text-white);
    /*-webkit-text-stroke: 0.2px #000000;*/
    font-weight: bold;
    text-shadow: var(--text-shadow);
}

a,
button {
    text-decoration: none;
    color: var(--bg-cream);
    background-color: transparent;
    transition: var(--transition-smooth);
}

input,
select,
textarea {
    background-color: var(--text-white);
    padding: 10px 12px;
    margin: 8px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 2px solid var(--primary-green);
    border-radius: 7px;
    font-size: 14px;
    font-family: inherit;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="url"] {
    background-color: var(--text-white);
    padding: 10px 12px;
    margin: 8px 0;
    border: 2px solid var(--primary-green);
    width: 100%;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    background-color: var(--text-white);
    border-color: var(--primary-red);
    outline: none;
    box-shadow: 0 0 0 3px rgba(151, 0, 0, 0.1);
}

input[type="submit"] {
    margin-top: 1.5rem;
    border: 2px solid var(--primary-green);
    padding: 12px 24px;
    background-color: var(--primary-green);
    color: var(--text-white);
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    max-width: 300px;
    transition: var(--transition-smooth);
}

input[type="submit"]:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {

    input,
    select {
        padding: 8px 10px;
        font-size: 13px;
        margin: 6px 0;
    }

    input[type="submit"] {
        padding: 10px 20px;
        font-size: 14px;
    }
}

#backgroundVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    max-height: 70%;
    opacity: 5%;
    z-index: 1;
    background-blend-mode: luminosity;
}

/* Grid Overlay Wrapper */
.grid-overlay-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
    padding: 2rem 0;
    box-sizing: border-box;
    overflow: visible;
}

/* Main/Middle Container */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 2rem;
    width: 85%;
    max-width: 600px;
    position: absolute;
    color: white;
    /*outline-color: #000000;*/
    z-index: 10;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-height: 400px;
}

/* Hidden state */
main.fade-out {
    opacity: 0;
}

#content {
    border-radius: 12px;
    position: absolute;
    z-index: 100;
    width: 85%;
    max-width: 600px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 2.5rem;
    opacity: 1;
    transition: var(--transition-smooth);
    min-height: 500px;
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--glass-bg);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

#content img {
    max-width: 100%;
    height: auto;
}

#content::-webkit-scrollbar {
    width: 8px;
}

#content::-webkit-scrollbar-track {
    border-radius: 10px;
    background: transparent;
}

#content::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

#content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

/* Media Queries for Smaller Screens */
@media (max-width: 768px) {
    .grid-overlay-wrapper {
        padding: 1.5rem 0;
        min-height: 550px;
    }

    main {
        width: 75%;
        max-width: 480px;
        padding: 1.5rem;
    }

    #content {
        width: 75%;
        max-width: 480px;
        padding: 1.5rem;
        min-height: 450px;
        max-height: 70vh;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .grid-overlay-wrapper {
        padding: 1rem 0;
        min-height: 500px;
    }

    main {
        width: 68%;
        max-width: 320px;
        padding: 1rem;
    }

    #content {
        width: 68%;
        max-width: 320px;
        padding: 1rem;
        min-height: 360px;
        max-height: 65vh;
        border-radius: 8px;
        border-width: 1px;
    }

    #content h1 {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }

    #content h2 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    #content p {
        font-size: 0.82rem;
        line-height: 1.35;
    }

    #content::-webkit-scrollbar {
        width: 5px;
    }
}

@media (max-width: 375px) {
    .grid-overlay-wrapper {
        padding: 0.8rem 0;
        min-height: 420px;
        margin-top: 6rem;
    }

    main {
        width: 67%;
        max-width: 275px;
        padding: 0.8rem;
    }

    #content {
        width: 67%;
        max-width: 275px;
        padding: 0.9rem;
        min-height: 300px;
        max-height: 58vh;
    }

    #content h1 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    #content h2 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    #content p {
        font-size: 0.78rem;
        line-height: 1.3;
    }

    #content::-webkit-scrollbar {
        width: 4px;
    }
}

@media (max-width: 320px) {
    .grid-overlay-wrapper {
        padding: 0.6rem 0;
        min-height: 380px;
        margin-top: 6rem;
    }

    main {
        width: 65%;
        max-width: 235px;
        padding: 0.6rem;
    }

    #content {
        width: 65%;
        max-width: 235px;
        padding: 0.8rem;
        min-height: 280px;
        max-height: 55vh;
    }

    #content h1 {
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
    }

    #content h2 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    #content p {
        font-size: 0.75rem;
        line-height: 1.25;
    }
}

.main-picture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    position: relative;
    height: auto;
    padding: 0;
    z-index: 1;
    box-sizing: border-box;
    margin: 0;
}

@media (max-width: 768px) {
    .main-picture-grid {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .main-picture-grid {
        gap: 0.6rem;
    }
}

@media (max-width: 375px) {
    .main-picture-grid {
        gap: 0.5rem;
    }
}

@media (max-width: 320px) {
    .main-picture-grid {
        gap: 0.4rem;
    }
}

.picture-grid-card {
    background-color: var(--bg-cream);
    border: 1px solid var(--primary-green);
    padding: 0.6rem;
    text-align: center;
    font-size: 1.2em;
    position: relative;
    z-index: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.picture-grid-card:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-red);
    z-index: 5;
}

@media (max-width: 768px) {
    .picture-grid-card {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 480px) {
    .picture-grid-card {
        padding: 0.4rem;
    }
}

.picture-grid-card img {
    position: relative;
    z-index: 0;
    filter: grayscale(60%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
    transform: scale(1.05);
}

/* taller on mobile */
@media (max-width: 375px) {
    .picture-grid-card {
        padding: 0.3rem;
        aspect-ratio: 4 / 5.5;
        /* even taller on small mobile */
    }
}

/* Individual slides */
.mySlides {
    position: absolute;
    /* stacked on top of each other */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    /* hidden initially */
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Content */
.modal-content {
    position: relative;
    width: 85vw;
    height: 85vh;
    max-width: 1200px;
    max-height: 900px;
    background-color: var(--bg-cream);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

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

.modal-content .modal-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(60%);
}

/* Close Button */
.modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: rgb(151, 0, 0);
    color: white;
    border: 2px solid rgb(151, 0, 0);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    background-color: rgb(120, 0, 0);
    border-color: rgb(120, 0, 0);
    transform: scale(1.1);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 90vw;
        height: 80vh;
        max-width: none;
        max-height: none;
        padding: 1.5rem;
    }

    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: -12px;
        right: -12px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 92vw;
        height: 75vh;
        padding: 1rem;
    }

    .modal-close {
        width: 32px;
        height: 32px;
        font-size: 18px;
        top: -10px;
        right: -10px;
    }
}

footer p {
    margin-bottom: 0rem;
}

.footer-disclaimer {
    font-size: x-small;
    color: #F0E7DA;
    margin: 1rem 2rem 3rem 2rem;
    padding: 0 1rem;
    text-align: center;
}

.app-store-btns {
    flex: 1;
    flex-direction: row;
    gap: 2rem;
}

.app-store-btns a img {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 1rem 0;
}

@media (max-width:375px) {
    .app-store-btns a img {
        width: 60%;
        height: 40%;
    }
}

/* Form */
form {
    margin-top: 2rem;
    width: 100%;
}

form label {
    font-size: 12px;
    display: block;
    text-align: left;
    margin-top: 12px;
    margin-bottom: 4px;
    font-weight: 600;
    /*color: rgb(34,49,29);*/
    color: white;
    text-shadow: 1px 1px #404040;
}

form input,
form select {
    border-radius: 7px;
}

form h2 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

form hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid rgb(34, 49, 29);
    opacity: 0.3;
}

@media (max-width: 480px) {
    form {
        margin-top: 1.5rem;
    }

    form label {
        font-size: 11px;
    }

    form h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
    }

    form hr {
        margin: 1.5rem 0;
    }
}

/* Feedback Modal Components */
.modal-body {
    padding: 2rem;
}

.modal-title {
    margin-top: 0;
    color: var(--primary-green);
    text-shadow: none !important;
}

.modal-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-shadow: none !important;
}

.feedback-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-green);
    text-align: left;
    text-shadow: none !important;
}

.feedback-input,
.feedback-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--primary-green);
    border-radius: 7px;
    font-family: var(--lalezar-font);
    background-color: var(--text-white);
}

.feedback-textarea {
    resize: vertical;
}

.char-count-display {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.feedback-recaptcha {
    margin: 15px 0;
}

.feedback-submit-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-green);
    color: var(--text-white);
    border: none;
    border-radius: 7px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.feedback-success-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.feedback-success-message h3 {
    margin-top: 0;
    color: #155724;
    text-shadow: none !important;
}

.feedback-error-message {
    display: none;
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.footer-tagline {
    color: var(--bg-cream);
    font-size: 1.25rem;
}

/* Section Components */
.section-text-italic {
    font-style: italic;
    text-align: center;
    line-height: 1.6;
    font-size: 0.95rem;
}

.brand-footer {
    margin-top: 3rem;
    opacity: 0.8;
}

.section-subtitle {
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.form-container {
    text-align: left;
}

.social-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .social-inputs {
        grid-template-columns: 1fr;
    }
}

.optional-label {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--primary-red);
}

.success-message-box {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.error-message-box {
    display: none;
    background-color: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.verification-note {
    font-style: italic;
    font-size: 0.75rem;
    margin-top: 1.5rem;
    opacity: 0.8;
}

.faq-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item h2 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.9;
}

/* Deep Link Modal */
.deep-link-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.deep-link-content {
    background: var(--bg-cream);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--primary-green);
    animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.deep-link-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-green) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
    box-shadow: 0 8px 16px rgba(151, 0, 0, 0.3);
}

.deep-link-title {
    margin-bottom: 12px;
    color: var(--primary-green);
    text-shadow: none !important;
}

.deep-link-description {
    color: #555;
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: none !important;
}

.deep-link-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deep-link-btn {
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-smooth);
    font-family: var(--lalezar-font);
    text-transform: uppercase;
}

.deep-link-btn.primary {
    background: var(--primary-green);
    color: white;
}

.deep-link-btn.primary:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

.deep-link-btn.secondary {
    background: rgba(0, 0, 0, 0.05);
    color: #444;
}

.deep-link-btn.secondary:hover {
    background: rgba(0, 0, 0, 0.1);
}

.deep-link-footer {
    margin-top: 24px;
}

.deep-link-footer p {
    color: #888;
    font-size: 14px;
    margin-bottom: 12px;
    text-shadow: none !important;
}

.deep-link-store-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.deep-link-store-btn {
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
    color: var(--primary-green);
}

.deep-link-store-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: #fffafa;
}

.content-welcome {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feedback-modal-content {
    max-width: 600px;
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
}

/* File Upload Component */
.file-upload-wrapper {
    margin-top: 10px;
    position: relative;
}

.custom-file-upload {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--primary-green);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    justify-content: center;
}

.custom-file-upload:hover {
    background: var(--primary-red);
}

.file-chosen-preview {
    margin-top: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px dashed var(--glass-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fadeIn 0.3s ease;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.file-name {
    font-size: 13px;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.remove-file-btn {
    background: var(--primary-red);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.remove-file-btn:hover {
    background: #ff4d4d;
    transform: scale(1.1);
}

.file-upload-label {
    margin-bottom: 8px;
    display: block;
    text-align: left;
    color: white;
    font-size: 12px;
    font-weight: 600;
}