:root {
    --bg-color: #0A0A0A;
    --gold-primary: #C8A561;
    --gold-light: #E5C07B;
    --gold-dark: #B08D55;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FIXED: html, body scroll settings */
html,
body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* UTILS */
.screen {
    display: none;
    position: relative;
    /* Fixed: allows flow */
    width: 100%;
    min-height: 100vh;
    /* Fixed: grows with content */
    height: auto;
    /* Fixed: removes cap */
    flex-direction: column;
    justify-content: flex-start;
    /* Fixed: avoids clipping when centered */
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    overflow: visible;
}

.screen.active {
    display: flex;
    opacity: 1;
    z-index: 10;
}

.content-container {
    max-width: 800px;
    width: 100%;
    z-index: 2;
    position: relative;
    margin: auto;
    /* Vertically centers content if space allows */
}

/* BACKGROUNDS */
#hero,
#result {
    background-image: url('../img/bg-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    /* Dark overlay for readability */
    z-index: 1;
}

/* TYPOGRAPHY */
.hero-logo {
    display: block;
    max-width: 50px;
    /* Reduced size as requested */
    height: auto;
    margin: 0 auto 15px;
    /* Centered and reduced spacing */
    opacity: 0.9;
}

.headline {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    /* Responsive scaling */
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0 10px;
    /* Prevent edge touching */
}

.subheadline {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* BUTTONS */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    border: 1px solid var(--gold-light);
    color: #000;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 40px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(200, 165, 97, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 165, 97, 0.6);
}

.btn-gold:active {
    transform: translateY(1px);
}

/* MICRO BULLETS */
.micro-bullets {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.micro-bullet {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.micro-bullet span {
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .micro-bullets {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-top: 15px;
    }
}

/* QUIZ STYLES */
#quiz {
    background-color: var(--bg-color);
    /* Pure black for quiz focus */
}

.progress-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #222;
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    width: 0%;
    transition: width 0.4s ease;
    box-shadow: 0 0 10px var(--gold-primary);
}

.question-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 3rem;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.option-btn {
    background: transparent;
    border: 1px solid var(--gold-dark);
    color: var(--text-white);
    padding: 20px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    font-family: var(--font-body);
}

.option-btn:hover {
    background: rgba(200, 165, 97, 0.1);
    border-color: var(--gold-light);
    transform: translateX(5px);
}

.option-btn.selected {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-light);
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }

    .question-text {
        font-size: 1.5rem;
    }

    .btn-gold {
        width: 100%;
        padding: 16px 20px;
    }

    .option-btn {
        padding: 16px;
        font-size: 1rem;
    }
}

/* IMAGE GRID STYLES */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.image-card {
    position: relative;
    border: 2px solid var(--gold-dark);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #000;
    aspect-ratio: 3/4;
    /* Vertical card aspect */
}

.image-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-light);
    box-shadow: 0 5px 15px rgba(200, 165, 97, 0.3);
}

.image-card.selected {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(200, 165, 97, 0.6);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-card .label-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Simple dark background for text readability */
    color: #FFF;
    font-weight: 700;
    text-align: center;
    padding: 10px 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .options-grid {
        gap: 10px;
    }

    .image-card .label-bar {
        padding: 8px 2px;
        font-size: 0.85rem;
    }
}

/* SOCIAL PROOF STYLES */
.social-proof-container {
    text-align: center;
    padding-top: 20px;
}

.social-logo {
    max-width: 150px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.headline-large {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    /* Increased size for impact */
    color: var(--gold-primary);
    font-weight: 800;
    /* Extra bold */
    margin-bottom: 5px;
    text-decoration: underline;
    text-decoration-color: var(--gold-light);
    text-underline-offset: 8px;
    text-shadow: 0 0 15px rgba(200, 165, 97, 0.4);
    /* Stronger glow */
    letter-spacing: 1px;
}

.subheadline-social {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 500;
}

.avatars-container {
    width: 280px;
    height: 280px;
    margin: 0 auto 50px;
    position: relative;
}

.avatars-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* VSL SCREEN STYLES */
.vsl-container {
    max-width: 860px;
    /* Increased max-width for desktop as requested (720-860px) */
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Ensure content fits within viewport if possible */
    min-height: auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 15px 0;
    /* Reduced margin */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(200, 165, 97, 0.2);
    border: 1px solid var(--gold-dark);
    /* Remove fixed aspect-ratio to allow height constraint */
    display: flex;
    justify-content: center;
    background: #000;
}

/* VIDEO LOADER */
.video-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    /* Above iframe (0), below buttons (if desired, but buttons are z-index 10 usually?) */
    transition: opacity 0.5s ease;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.vsl-video {
    width: 100%;
    height: 100%;
    /* Force full height of container */
    object-fit: cover;
    /* Cover container logic */
    display: block;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    transition: opacity 0.3s;
}

.play-icon {
    background: var(--gold-primary);
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(200, 165, 97, 0.6);
    animation: pulse-soft 2s infinite;
}

.vsl-progress-container {
    width: 100%;
    max-width: 95%;
    /* Align with mobile video width preference */
    margin-top: 10px;
}

.vsl-progress-label {
    text-align: right;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1rem;
}

.vsl-progress-track {
    width: 100%;
    height: 10px;
    background: #222;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #333;
}

.vsl-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
    width: 0%;
    transition: width 0.2s linear;
    box-shadow: 0 0 10px var(--gold-primary);
}

/* Responsive adjustments */
/* Mobile - Video Wrapper Height */
@media (max-width: 768px) {
    .video-wrapper {
        height: 70vh !important;
        min-height: 70vh !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 20px 0;
    }
}

/* Desktop - Video Wrapper Height */
@media (min-width: 769px) {
    .video-wrapper {
        height: 450px !important;
        max-width: 800px;
    }
}

/* Force iframe to fill wrapper absolutely */
.video-wrapper iframe,
.vsl-video {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
    object-fit: unset !important;
    /* Explicitly remove object-fit */
}

/* RESULT SECTION STYLES */
.result-container {
    max-width: 600px;
    padding-bottom: 40px;
}

.barber-image-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 15px;
    border: 3px solid var(--gold-primary);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(200, 165, 97, 0.3);
}

.barber-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SLIDER STYLES */
.slider-container {
    margin-bottom: 30px;
    position: relative;
    padding: 0 10px;
}

.slider-track {
    width: 100%;
    height: 10px;
    background: #333;
    border-radius: 5px;
    position: relative;
    margin-bottom: 10px;
}

.slider-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF4D4D, #FFD700, #4CAF50, #9C27B0);
    border-radius: 5px;
    width: 0%;
    transition: width 1s ease-out;
}

.slider-thumb {
    width: 20px;
    height: 20px;
    background: #FFF;
    border: 3px solid var(--gold-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 0%;
    transition: left 1s ease-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.thumb-label {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #FFF;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    border: 1px solid var(--gold-dark);
}

.thumb-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.8rem;
    font-weight: 600;
}

/* DIAGNOSIS BANNER */
.diagnosis-banner {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
    border-left: 5px solid transparent;
}

.diagnosis-banner h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.diagnosis-banner p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #EEE;
}

/* Diagnosis Variants */
.diagnosis-low {
    background: rgba(255, 77, 77, 0.1);
    border-left-color: #FF4D4D;
}

.diagnosis-low h3 {
    color: #FF4D4D;
}

.diagnosis-normal {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: #FFD700;
}

.diagnosis-normal h3 {
    color: #FFD700;
}

.diagnosis-good {
    background: rgba(76, 175, 80, 0.1);
    border-left-color: #4CAF50;
}

.diagnosis-good h3 {
    color: #4CAF50;
}

.diagnosis-excellent {
    background: rgba(156, 39, 176, 0.1);
    border-left-color: #9C27B0;
}

.diagnosis-excellent h3 {
    color: #9C27B0;
}


/* INFO GRID */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.info-box h3 {
    font-size: 0.9rem;
    color: var(--gold-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-box p {
    font-size: 0.85rem;
    color: #CCC;
    line-height: 1.4;
}

.btn-large {
    width: 100%;
    font-size: 1.1rem;
    /* Slightly smaller for better mobile fit */
    padding: 18px;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .headline {
        margin-bottom: 1rem;
    }

    .result-container {
        padding: 20px 15px;
        /* Prevent edge touching */
        width: 100%;
        overflow-x: hidden;
        /* Prevent horizontal scroll */
    }

    .barber-image-container {
        width: 120px;
        /* Smaller image on mobile */
        height: 120px;
        margin-bottom: 15px;
    }

    .diagnosis-banner {
        padding: 15px;
    }

    .diagnosis-banner h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .headline {
        line-height: 1.3;
    }

    .info-grid {
        grid-template-columns: 1fr;
        /* Stack info boxes */
        gap: 10px;
    }

    .info-box {
        padding: 12px;
    }

    .slider-labels {
        font-size: 0.7rem;
        /* Prevent label overlap */
    }

    .btn-large {
        font-size: 1rem;
        padding: 15px;
    }
}

/* GUARANTEE SEAL */
.garantia-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.garantia-container img {
    max-width: 180px;
    height: auto;
}

/* DESKTOP BUTTON REPOSITIONING */
@media (min-width: 768px) {
    .btn-escalar-fixo {
        position: static !important;
        z-index: auto !important;
        display: block !important;
        margin: 32px auto 20px;
        /* ajusta distância entre oferta e garantia */
        width: auto;
    }
}

/* ANIMATION & SHADOW FOR FINAL BUTTON */
@keyframes pulse-soft {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(200, 165, 97, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(200, 165, 97, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(200, 165, 97, 0.4);
    }
}

.btn-primary-pulse {
    animation: pulse-soft 2s infinite ease-in-out;
}

/* Desktop specific shadow enhancement */
@media (min-width: 768px) {
    .btn-primary-pulse {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        /* Stronger shadow for desktop contrast */
    }

    /* Update keyframes for desktop to maintain the stronger base shadow */
    @keyframes pulse-soft-desktop {
        0% {
            transform: scale(1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        50% {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(200, 165, 97, 0.5);
            /* Gold glow mixed with shadow */
        }

        100% {
            transform: scale(1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
    }

    .btn-primary-pulse {
        animation: pulse-soft-desktop 2s infinite ease-in-out;
    }
}

/* FAQ SECTION STYLES */
.faq-container {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: left;
}

.faq-headline {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(200, 165, 97, 0.2);
}

.faq-item:last-child {
    border-bottom: none;
}

details {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

details[open] {
    background: rgba(255, 255, 255, 0.08);
}

summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #EEE;
    position: relative;
    list-style: none;
    /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 1.05rem;
}

summary::-webkit-details-marker {
    display: none;
    /* Chrome/Safari hide default */
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold-primary);
    font-weight: 300;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
    /* Turn + into x */
}

details p {
    padding: 0 20px 20px 20px;
    color: #CCC;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    animation: fadeIn 0.4s ease;
}

summary:hover {
    background: rgba(200, 165, 97, 0.05);
}

summary:hover::after {
    transform: scale(1.2);
}

details[open] summary:hover::after {
    transform: rotate(45deg) scale(1.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .faq-headline {
        font-size: 1.6rem;
    }

    summary {
        padding: 15px;
        font-size: 0.95rem;
    }

    details p {
        padding: 0 15px 15px 15px;
    }
}

/* Custom Video Controls */

/* Custom Video Controls */

.custom-video-wrapper {
    position: relative;
    width: 100%;
    /* 16:9 Aspect Ratio Hack */
    padding-bottom: 56.25%;
    height: 0;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    /* Ensure no click hijacking and prevent context menus */
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    /* Prevents long-press menu */
}

/* Ensure iframe sits correctly and allows interaction */
.custom-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* FIX: Allow direct interaction with iframe */
    pointer-events: auto;
    z-index: 1;
    -webkit-touch-callout: none;
}

/* Overlays - Buttons sit above iframe */
.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gold-primary);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    user-select: none;
}

.custom-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(200, 165, 97, 0.5);
}

.custom-mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFF;
    cursor: pointer;
    z-index: 10;
    /* Ensure above iframe */
    transition: all 0.3s ease;
    display: none;
    /* Hidden by default until play */
    user-select: none;
}

.custom-mute-btn:hover {
    background: rgba(200, 165, 97, 0.8);
}

/* Hide native controls if they somehow appear */


@media (max-width: 768px) {

    /* Wrapper responsive rules already handled by padding-bottom % */
    /* Adjust button sizes for mobile */
    .custom-play-btn {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .custom-mute-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        bottom: 15px;
        right: 15px;
    }

    /* FIX: "Escalar Faturamento" Button Mobile Layout */
    /* The final button is an <a> tag, which needs explicit display to accept width/height correctly */
    /* Updated to target ONLY 'a' tags to avoid unhiding the VSL <button> inadvertently */
    a.btn-gold.btn-large {
        display: flex !important;
        /* Force flex context */
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 60px;
        /* Consistent touch target */
        text-align: center;
        line-height: safe center;
        /* Prevent chopping */
        white-space: normal;
        /* Allow text wrap if needed */
        margin-top: 20px;
        box-sizing: border-box;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        text-decoration: none;

        /* Ensure no underline */
    }
}