/* greek */
@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url(../fonts/8vIH7w4qzmVxm2NL9G78HEZnMg.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* latin-ext */
@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url(../fonts/8vIH7w4qzmVxm25L9G78HEZnMg.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url(../fonts/8vIH7w4qzmVxm2BL9G78HEY.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body {
    font-family: "Syne", sans-serif;
    background-color: #f8f3e9;
    margin: 0;
    padding: 0;
    color: #333;
    overflow-x: hidden;
}
.container-algy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8vh 8vw;
    padding-top: 0%;
}
header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}
.logo {
    font-family: "Syne", sans-serif;
    font-size: 36px;
    letter-spacing: 3px;
    color: #3a3a3a;
}
.question {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #5a5a5a;
    animation: fadeIn 1.5s ease-out;
}
.pg {
    text-align: right;
    margin-bottom: 30px;
    font-size: 14px;
    color: #888;
    animation: slideInRight 1s ease-out;
}
.options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out;
}
.option {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    width: calc(33.33% - 20px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.option.selected {
    background-color: #c9a980;
    color: #fff;
}
.option h3 {
    margin: 0;
    font-family: "Syne", sans-serif;
    font-size: 20px;
}
.button {
    display: block;
    width: 200px;
    margin: 40px auto 0;
    padding: 12px 25px;
    background-color: #c9a980;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s;
}
.button:hover:before {
    left: 100%;
}
.button:hover {
    background-color: #b08f68;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 768px) {
    .option {
        width: calc(50% - 20px);
    }
}
@media (max-width: 480px) {
    .option {
        width: 100%;
    }
}