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 {
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;
}

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        .review-card {
            background: white;
            border-radius: 10px;
            padding: 15px;
            line-height: 1.5em;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateY(-5px);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer-name {
            font-weight: 600;
            font-size: 1.1em;
            color: #2c3e50;
        }
        .stars {
            color: #f1c40f;
            font-size: 1.2em;
        }
        .review-content {
            font-style: italic;
            color: #555;
            margin-bottom: 15px;
        }
        .review-meta {
            font-size: 0.85em;
            color: #7f8c8d;
            text-align: right;
        }
        .highlight {
            background-color: #fffde7;
            padding: 2px 5px;
            border-radius: 3px;
        }

        @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 {
            display: flex;
            justify-content: space-between;
            margin-top: 16px;
        }
        .navigation button {
            padding: 12px 24px;
            background: #47A34A;
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 1.3em;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .navigation button:hover {
            background: #3E8E41;
        }
        .navigation button:disabled {
            background: #ccc;
            cursor: not-allowed;
        }
        .navigation-original {
            display: flex;
            justify-content: space-between;
            margin-top: 16px;
        }
        .navigation-original button {
            padding: 12px 24px;
            background: #F75A00;
            color: #fff;
            border: none;
            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 #4CAF50;
            border-radius: 5px;
            margin-bottom: 10px;
            width: 300px;
        }
        .unlock-section button {
            padding: 14px 28px;
            background: #4CAF50;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.4em;
            font-weight: bold;
        }
        .unlock-section button:hover {
            background: #45a049;
        }
        .purchase-link {
            margin-top: 15px;
            color: #0063E5;
            text-decoration: underline;
            cursor: pointer;
            font-size: 1.4em;
            font-weight: bold;
        }
        .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;
        }

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%;
    }
}

/* 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;
    }
}