

        :root {
            --ghala-green: #173d2b;
            --ghala-light-green: #315d47;
            --ghala-gold: #c8a96b;
            --ghala-bg: #000000;
            --ghala-dark: #17231d;
            --ghala-grey: #777;
        }


        body {
            margin: 0;
            font-family: 'Roboto', sans-serif;
            background: var(--ghala-bg);
            color: var(--ghala-dark);
            
        }


        .feedback-page {
            min-height: 100vh;
            padding: 70px 20px;
        }


        .feedback-container {
            max-width: 850px;
            margin: auto;
        }


        /* LOGO */

        .feedback-logo {
            text-align: center;
            margin-bottom: 50px;
        }

        .feedback-logo img {
            width: 110px;
            height: auto;
        }


        /* HEADER */

        .feedback-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .feedback-eyebrow {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--ghala-gold);
            margin-bottom: 20px;
        }

        .feedback-header h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(38px, 6vw, 68px);
            line-height: 1.05;
            font-weight: 900;
            margin-bottom: 25px;
            color: var(--ghala-green);
        }

        .feedback-header p {
            max-width: 560px;
            margin: auto;
            font-size: 18px;
            line-height: 1.7;
            color: var(--ghala-grey);
        }


        /* SECTIONS */

        .feedback-section {
            margin-bottom: 65px;
        }

        .section-label {
            display: flex;
            align-items: center;
            gap: 15px;

            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;

            color: #C5A992;

            margin-bottom: 20px;
        }

       


        /* QUESTION CARD */

       .question-card {
    position: relative;
    overflow: hidden;

    background: #C5A992;

    padding: 35px;
    margin-bottom: 18px;

    border: 1px solid #e6e4dc;
    border-radius: 18px;

    box-shadow:
        0 8px 25px #000000,
        inset 0 2px 0 #F2E6DB,
        inset 0 -3px 0 #9E8068;

    transition: 0.3s ease;
}


/* SOLID GLOSS REFLECTION */
.question-card::before {
    content: "";

    position: absolute;

    top: -45%;
    left: -15%;

    width: 130%;
    height: 75%;

    background: #E8D9CA;

    transform: rotate(-6deg);

    opacity: 0.55;

    filter: blur(18px);

    pointer-events: none;
}


/* Keep content above gloss */
.question-card > * {
    position: relative;
    z-index: 2;
}

        .question-card h3 span {
            color: var(--ghala-gold);
        }
        .question-card:hover {
            border-color: #d4d0c3;
        }

        .question-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            line-height: 1.5;
            font-weight: 600;
            margin-bottom: 28px;
            color: var(--ghala-dark);
        }


        /* STAR RATING */

        .rating-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .star-rating {
            display: flex;
            gap: 8px;
        }

        .star {
            border: none;
            background: transparent;

            padding: 0;

            font-size: 38px;
            line-height: 1;

            color: transparent;

            /* -webkit-text-stroke: 1.5px var(--ghala-gold); */
            -webkit-text-stroke: 1.5px white;

            cursor: pointer;

            transition:
                transform 0.15s ease,
                color 0.15s ease;
        }

        .star:hover {
            transform: scale(1.12);
        }

        .star.active,
        .star.hovered {
            
            /* color: var(--ghala-gold); */
             color: white;
            -webkit-text-stroke: 0;
        }


        .rating-label {
            margin-top: 10px;

            font-size: 13px;
            color: var(--ghala-grey);

            min-height: 20px;
        }


        /* TEXTAREAS */

        .feedback-textarea {
            border-radius: 10px;
            border: 1px solid #000000;

            padding: 15px;

            font-family: 'Roboto', sans-serif;

            resize: vertical;

            min-height: 130px;
            background-color: #C5A992;
        }

        .feedback-textarea:focus {
            background-color: #e2d3c7;
            border-color: var(--ghala-green);

            box-shadow: none;
        }

      


        /* FEEDBACK TYPE */

        .feedback-type {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .type-option {
            border: 1px solid #ddd9cd;
            padding: 22px;
            border-radius: 10px;

            cursor: pointer;

            transition: 0.25s ease;
        }


        input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
            /* height: 38px; */
            padding: 6px 10px;
            background-color: #e2d3c7 !important;
            border: 1px solid #D1D1D1;
            border-radius: 10px;
            box-shadow: none;
            box-sizing: border-box;
            align-items: center !important;
        }


          .type-option:has(input:checked) {
            border-color: var(--ghala-green);
            background-color: #e2d3c7 !important;
        }


        .type-option:hover {
            border-color: var(--ghala-gold);
        }

        .type-option input {
            display: none;
        }

        .type-option:has(input:checked) {
            border-color: var(--ghala-green);
            background: #f5f7f4;
        }

        .type-content {
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

        .type-content strong {
            font-family: 'Montserrat', sans-serif;
            color: var(--ghala-green);
        }

        .type-content small {
            color: var(--ghala-grey);
            line-height: 1.5;
        }


        /* TOURNAMENT CODE */

        .question-help {
            color: var(--ghala-grey);
            font-size: 14px;
            margin-top: -15px;
            margin-bottom: 25px;
        }

        .tournament-input {
            border-radius: 0;
            padding: 15px;

            text-transform: uppercase;

            border: 1px solid #ddd9cd;
        }

        .tournament-input:focus {
            border-color: var(--ghala-green);
            box-shadow: none;
        }


        /* NPS */

        .nps-rating {
            display: flex;
            gap: 7px;
            flex-wrap: wrap;
        }

        .nps-number {
            width: 58px;
            height: 58px;

            background: #e2d3c7;

            border: 1px solid #d8d5ca;

            color: var(--ghala-green);

            font-weight: 700;

            cursor: pointer;

            transition: 0.2s ease;
        }

        .nps-number:hover,
        .nps-number.active {
            background: #e2d3c7;
            border-color: white;
            color: white;
        }


        /* SUBMIT */

        .feedback-submit {
            text-align: center;
            padding: 30px 0 70px;
        }

        .submit-button {
            border: none;

            background: #C5A992;
            color: white;

            padding: 18px 35px;

            font-family: 'Montserrat', sans-serif;
            font-weight: 700;

            letter-spacing: 1px;

            cursor: pointer;

            transition: 0.25s ease;
        }

        .submit-button i {
            margin-left: 15px;
        }

        .submit-button:hover {
            background: #121212;
            transform: translateY(-2px);
        }

        .feedback-submit p {
            margin-top: 20px;
            font-size: 13px;
            color: var(--ghala-grey);
        }


        /* HIDDEN */

        .hidden-section {
            display: none;
        }


        /* MOBILE */

        @media (max-width: 600px) {

            .feedback-page {
                padding: 45px 15px;
            }

            .feedback-logo {
                margin-bottom: 35px;
            }

            .feedback-logo img {
                width: 85px;
            }

            .feedback-header {
                margin-bottom: 45px;
            }

            .feedback-header h1 {
                font-size: 40px;
            }

            .feedback-header p {
                font-size: 16px;
            }

            .question-card {
                padding: 25px 20px;
            }

            .question-card h3 {
                font-size: 16px;
            }

            .star {
                font-size: 34px;
            }

            .feedback-type {
                grid-template-columns: 1fr;
            }

            .nps-number {
                width: 42px;
                height: 42px;
            }
        }

  



        

.tournament-code-wrapper {
    display: flex;
    gap: 12px;
    max-width: 650px;
    margin-top: 28px;
    align-items: center !important;
}

.tournament-input {
    flex: 1;
    height: 58px;
    margin: 0 !important;
    padding: 0 20px;

    background: rgba(255,255,255,0.18) !important;

    border: 1px solid rgba(0,0,0,0.25) !important;
    border-radius: 12px !important;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    letter-spacing: 1px;

    color: #000 !important;
}

.verify-code-btn {
    height: 58px;
    padding: 0 28px;

    border: 1px solid #000;
    border-radius: 12px;

    background: #000;
    color: #fff;

    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.25s ease;
}

.verify-code-btn:hover {
    background: #222;
}

.verify-code-btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

.code-message {
    margin-top: 12px;

    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.code-success {
    color: #244d32;
}

.code-error {
    color: #8b2424;
}

.tournament-info {
    margin-top: 8px;

    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 600px) {

    .tournament-code-wrapper {
        flex-direction: column;
    }

    .verify-code-btn {
        width: 100%;
    }

}