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: #E5E5FF;
border: 2px dashed #866BFF;
border-radius: 12px;
box-shadow: 0 0px 3px 3px rgba(255, 255, 255, 0.7);
padding: 20px 2% 10px;
text-align: left;
}
        .header {
            background: linear-gradient(45deg, #4a5568, #2d3748);
            color: white;
            padding-top: 2px;
            padding-bottom: 5px;
            text-align: center;
            border-radius: 12px;
            box-shadow: 0 0px 4px 2px rgba(0, 0, 0, 0.25);
        }

        .header h1 {
            font-size: 1.6em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
        }

        .header p {
            font-size: 1.05em;
            opacity: 0.9;
            font-style: italic;
            padding: 0px 12px;
        }

        .content {
            padding: 1px;
        }

        .question {
            margin-bottom: 16px;
            margin-top: 16px;
            padding: 12px;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 3px solid #667eea;
        }

        .question h3 {
            color: #2d3748;
            margin-bottom: 15px;
            margin-top: 5px;
            font-size: 1.1em;
        }

        .option {
            margin: 10px 0;
            padding: 10px 10px;
            background: white;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid transparent;
            line-height: 1.5em;
        }

        .option:hover {
            background: #EBE8FF;
            border-color: #C2BAFF;
            transform: translateX(5px);
        }

        .option label {
            cursor: pointer;
            display: block;
            font-weight: 500;
        }

        .option input[type="radio"] {
            margin-right: 8px;
            transform: scale(1.2);
        }

        .submit-btn {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 15px 24px;
            border: none;
            border-radius: 16px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: block;
            margin: 30px auto;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .result {
            background: linear-gradient(135deg, #2616CE 100%, #990033 0%);
            color: white;
            padding: 10px;
            border-radius: 15px;
            margin-top: 16px;
            margin-bottom: 14px;
            box-shadow: 0 0px 2px 2px rgba(0, 0, 0, 0.2);
            
        }

        .result h2 {
            font-size: 1.6em;
            margin-top: 5px;
            margin-bottom: 12px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .result-section {
            margin: 18px 0;
            padding-top: 1px;
            padding-bottom: 1px;
            padding-left: 10px;
            padding-right 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
            box-shadow: 0 0px 2px 2px rgba(255, 255, 255, 0.2);
        }

        .result-section h3 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.2em;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            padding-bottom: 10px;
        }

        .result-section p {
            line-height: 1.6;
            font-size: 1.05em;
        }

        .restart-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 14px 24px;
            border: 2px solid white;
            border-radius: 20px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 25px 0 15px;
            text-decoration: none;
            text-align: center;
            font-size: 1.1em;
        }

        .restart-btn:hover {
            background: white;
            color: #333;
            transform: translateY(-1px);
        }
        
.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;
}

/* 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;
    }
}