body {
background-image: url('images/app-background.webp');
font-family: Arial, sans-serif;
color: #333;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
min-height: 100vh;
margin-bottom: 70px;
margin-left: auto;
margin-right: auto;
width: 97%;
}
.container {
width: 96%;
max-width: 900px;
background: #D8FFDB;
border: 2px solid #60FF6B;
border-radius: 12px;
box-shadow: 0 0px 3px 3px rgba(255, 255, 255, 0.7);
padding: 2%;
text-align: center;
animation: fadeIn 1s ease-in-out;
}
.container-original {
width: 96%;
max-width: 900px;
background: #FFE9E0;
border: 2px solid #FFB291;
border-radius: 12px;
box-shadow: 0 0px 3px 3px rgba(255, 255, 255, 0.7);
padding: 2%;
text-align: center;
animation: fadeIn 1s ease-in-out;
}

.top-menu-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 4px;
    position: relative;
}
.language-menu-wrapper {
    margin-right: auto;
    padding-left: 3%;
}
.mobile-menu {
    order: 2;
    margin-left: auto;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1000;
    padding-right: 1%;
    padding-bottom: 3px;
}
.gtranslate_wrapper {
    background-color: #FFFFFF;
    padding: 6px 6px;
    border: 1px solid #ADADAD;
    border-radius: 5px;
    box-shadow: 0 0px 2px 2px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
}
    .menu-icon {
    font-size: 2.4em;
    cursor: pointer;
    color: #FFFFFF;
    }
.menu-items {
    list-style: none;
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 48px;
    padding-left: 0;
    padding-right: 0;
    width: 95%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1001;
    max-height: 80vh;
    overflow-y: auto;
}
.menu-items.show {
    display: flex;
}
    .menu-items li {
        padding: 15px;
        text-align: center;
        border-bottom: 1px dashed #8C8C8C;
    }
    .menu-items li a {
        color: white;
        text-decoration: none;
        font-size: 1.3em;
    }
    .close-menu {
        text-align: center;
        padding: 10px;
        background: red;
        color: white;
        cursor: pointer;
}
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        h1 {
            color: #4CAF50;
            font-size: 2em;
            margin-bottom: 20px;
        }
        .question {
            margin-bottom: 20px;
            padding: 2%;
            border: 2px solid #A0FFA8;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 0px 3px 3px rgba(0, 0, 0, 0.1);
        }
        .question p {
            font-size: 1.15em;
            color: #555;
            margin-bottom: 15px;
        }
        .question label {
            display: block;
            margin: 8px 0;
            line-height: 1.4em;
            font-size: 1.1em;
            background-color: #E5FFE8;
            padding: 5px 6px;
            border-radius: 7px;
            color: #333;
            cursor: pointer;
        }
        .question input[type="radio"] {
            margin-right: 7px;
            transform: scale(1.3);
        }
        .navigation-original {
            display: flex;
            justify-content: space-between;
            margin-top: 16px;
        }
        .navigation-original button {
            padding: 12px 24px;
            background: #F75A00;
            color: #fff;
            border: 2px solid #FFD400;
            border-radius: 5px;
            font-size: 1.3em;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .navigation-original button:hover {
            background: #DD5100;
        }
        .navigation-original button:disabled {
            background: #ccc;
            cursor: not-allowed;
        }
        .results {
            display: none;
            margin-top: 15px;
            padding: 2%;
            border: 2px solid #FFCC32;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        .results h2 {
            color: #FF5722;
            font-size: 1.6em;
            margin-bottom: 20px;
        }
        .results p {
            color: #555;
            font-size: 1.05em;
            margin: 10px 0;
        }
        .results .section {
            margin-bottom: 20px;
            padding: 2%;
            border: 1px solid #87AF8B;
            border-radius: 8px;
            background: #f9f9f9;
            text-align: center;
        }
        .results .section h3 {
            display: flex;
            align-items: center;
            color: #429645;
            font-size: 1.4em;
            margin-bottom: 10px;
			text-align: center;
        }
        .results .section h3 span {
            font-size: 1.5em;
            text-align: center;
            margin-right: 10px;
        }
        .save-results, .restart-btn {
            text-align: center;
            margin-top: 20px;
        }
        .save-results button, .restart-btn button {
            padding: 14px 28px;
            background: #FF5722;
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 1.5em;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .save-results button:hover, .restart-btn button:hover {
            background: #e64a19;
        }
        .error-message {
            color: red;
            font-size: 1.2em;
            margin-top: 15px;
        }
        .article {
            margin-top: 20px;
            padding: 0px;
        }
        .article h2 {
            color: #3E8E41;
            font-size: 1.3em;
            margin-bottom: 15px;
        }
        .article p {
            color: #555;
            font-size: 1.05em;
            margin: 10px 0;
        }
        .article img {
            max-width: 100%;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .results-obscured {
            position: relative;
        }
        .results-obscured::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            z-index: 1;
        }
        .unlock-section {
            position: absolute;
            top: 30px;
            left: 10px;
            right: 10px;
            text-align: center;
            z-index: 2;
        }
        .unlock-section input {
            padding: 10px;
            font-size: 1em;
            border: 2px solid #A5FF7F;
            border-radius: 5px;
            margin-top: 5px;
            margin-bottom: 10px;
            width: 310px;
            box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.2);
        }
            .unlock-section input:hover {
            border: 3px solid #4CFF00;
        }
        .unlock-section button {
            padding: 14px 28px;
            background: #4CAF50;
            margin-bottom: 10px;
            color: #fff;
            border: 1px solid #5ACE5E;
            box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.2);
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.4em;
            font-weight: bold;
        }
        .unlock-section button:hover {
            background: #4C9950;
        }
        .purchase-link {
            margin-top: 15px;
            color: #0063E5;
            text-decoration: underline;
            cursor: pointer;
            font-size: 1.4em;
            font-weight: bold;
            text-shadow: 1px 1px 2px #A0A0A0;
        }
        .password-container {
            position: relative;
            display: inline-block;
            font-size: 1.3em;
        }
        .password-toggle {
            position: absolute;
            right: 10px;
            top: 25%;
            transform: translateY(-22%);
            cursor: pointer;
            font-size: 1.3em;
            color: #4CAF50;
        }
        .question-counter {
            font-size: 1.1em;
            color: #595959;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .expandable-container {
            margin-top: 20px;
            width: 97%;
            max-width: 900px;
            background: #FFFFFF;
            border: 2px solid #F49A66;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            padding-top: 1px;
            padding-left: 2%;
            padding-right: 2%;
            padding-bottom: 13px;
            text-align: left;
            display: none;
        }

        .expandable-container h3 {
            color: #E25A00;
            font-size: 1.3em;
            margin-bottom: 10px;
            cursor: pointer;
        }

        .expandable-container h3:hover {
            text-decoration: underline;
        }

        .expandable-container .content {
            display: none; /* Initially hidden */
            margin-top: 13px;
        }

        .expandable-container .content p {
            color: #555;
            font-size: 1em;
            margin: 10px 0;
        }

        .expandable-container .content ul {
            list-style-type: disc;
            margin-left: 20px;
        }

        .expandable-container .content ul li {
            margin-bottom: 10px;
        }

        .toggle-button {
            background: #EA5D0B;
            color: #fff;
            border: 1px solid #FFFFFF;
            border-radius: 5px;
            padding: 11px 22px;
            font-size: 1.3em;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-top: 13px;
        }

        .toggle-button:hover {
            background: #F9630C;
        }
h1 {
    font-size: 2.5em;
    background: linear-gradient(30deg, #E5AD06, #429645, #EA75DA, #FF6A00, #A42BBC);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 7s ease infinite;
    margin-bottom: 15px;
    margin-top: 13px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Added shadow */
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
    .answer-options {
        display: flex;
        flex-direction: column;
        gap: 11px;
        margin-top: 20px;
        margin-bottom: 13px;
    }

    .answer-option {
        padding: 8px;
        border-radius: 12px;
        border: 2px solid #ddd;
        background-color: #fdfdfd;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        text-align: center;
        font-size: 1.2em;
        font-weight: bold;
        -webkit-tap-highlight-color: transparent; /* Removes blue tap highlight on mobile */
    }

    .answer-option:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .answer-option.selected {
        box-shadow: 0 4px 12px rgba(234, 93, 0, 0.3);
        transform: translateY(-2px);
    }

    /* Color variations for options */
    .answer-option[data-value="5"] { color: #C10000; }
    .answer-option[data-value="4"] { color: #EA5D00; }
    .answer-option[data-value="3"] { color: #3D8C40; }
    .answer-option[data-value="2"] { color: #1B7CC6; }
    .answer-option[data-value="1"] { color: #9025A3; }

    .answer-option.selected[data-value="5"] { background-color: #FFE5E5; border-color: #C10000; }
    .answer-option.selected[data-value="4"] { background-color: #FFEFE5; border-color: #EA5D00; }
    .answer-option.selected[data-value="3"] { background-color: #E5FFEB; border-color: #3D8C40; }
    .answer-option.selected[data-value="2"] { background-color: #E5F3FF; border-color: #1B7CC6; }
    .answer-option.selected[data-value="1"] { background-color: #F8E5FF; border-color: #9025A3; }
    
/* Cookie Consent Banner */
#cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c1810, #4a2c1a);
    color: #f4f1eb;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    font-family: 'Georgia', serif;
    border-top: 3px solid #d4af37;
    transition: opacity 0.3s ease;
}

#cookie-consent-banner > div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

#cookie-consent-banner > div > div:first-child {
    flex: 1;
    min-width: 300px;
}

#cookie-consent-banner h3 {
    margin: 0 0 8px 0;
    color: #d4af37;
    font-size: 18px;
    font-weight: bold;
}

#cookie-consent-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #e8e1d6;
}

#cookie-consent-banner .button-container {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

#cookie-consent-banner button {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

#cookie-consent-banner button.necessary-only {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

#cookie-consent-banner button.necessary-only:hover {
    background: #d4af37;
    color: #2c1810;
}

#cookie-consent-banner button.accept-all {
    background: #d4af37;
    border: 2px solid #d4af37;
    color: #2c1810;
}

#cookie-consent-banner button.accept-all:hover {
    background: #e6c757;
    border-color: #e6c757;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    #cookie-consent-banner > div {
        flex-direction: column;
        text-align: center;
    }
    
    #cookie-consent-banner h3 {
        font-size: 16px;
    }
    
    #cookie-consent-banner p {
        font-size: 13px;
    }
    
    #cookie-consent-banner button {
        font-size: 13px;
        padding: 8px 16px;
    }
}