@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0px;
    margin: 0px;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
}
body {
    width: 98%;
    max-width: 98%;
    height: 98vh;
    max-height: 98vh;
    margin: 0 auto;
    padding: 0.8em;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
p {
    color: #444444;
    font-family: 'Poppins', sans-serif;
    font-size: 16pt;
    line-height: 1.5;
    margin: 4pt;
}
p.value-description {
    text-indent: -16pt;
    margin-left: 20pt;
}
p.question {
    margin: 8pt auto;
    color: #333333;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    width: 90%;
    min-width: 300pt;
    min-height: 80pt;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15pt;
    border-radius: 15px;
    font-size: 1.8em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
p.question:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
h1 {
    color: #222222;
    font-family: 'Poppins', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    margin-top: 0pt;
    margin-bottom: 5pt;
    letter-spacing: -1px;
}
h2 {
    color: #333333;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8em;
    font-weight: 600;
    line-height: 1.1;
    margin-top: 5pt;
    margin-bottom: 5pt;
    letter-spacing: -0.5px;
}
li {
    font-size: 16pt;
    text-indent: 16pt;
}
a {
    font-family: inherit;
}
img.center {
    display: block;
    margin: 1em auto;
    width: 50%;
    min-width: 500pt;
}
.button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    color: white;
    padding: 8pt 15pt;
    width: 70%;
    min-width: 300pt;
    max-width: 500pt;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 1.1em;
    margin: 4px auto;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}
.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}
.small_button, .small_button_off {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border: none;
    border-radius: 12px;
    color: white;
    padding: 12pt 16pt;
    width: 10%;
    min-width: 100pt;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 18pt;
    margin: 8px auto;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}
.small_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}
.small_button_off {
    background-color: #ddd;
    color: #888;
    border: 2px solid #888;
    cursor: not-allowed;
    margin: -4px auto;
}
div.axis {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 6px 0;
}
div.bar {
    height: 28pt;
    line-height: 28pt;
    padding: 6pt;
    margin-top: 2pt;
    margin-bottom: 2pt;
    border-width: 3px;
    border-right-width: 1px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-color: #222222;
    background-color: #eeeeee;
    display: block;
    width: 50%;
}
div.text-wrapper {
    font-family: 'Poppins', sans-serif;
    font-size: 28pt;
    font-weight: 600;
    line-height: 28pt;
    color: #222222;
    display: inline-block;
    letter-spacing: -0.5px;
}
div.equality {
    background-color: #f44336;
    text-align: left;
    border-right-style: solid;
}
div.wealth {
    background-color: #00897b;
    text-align: right;
    border-left-style: solid;
}
div.liberty {
    background-color: #ffeb3b;
    text-align: left;
    border-right-style: solid;
}
div.authority {
    background-color: #3f51b5;
    text-align: right;
    border-left-style: solid;
}
div.peace {
    background-color: #03a9f4;
    text-align: right;
    border-left-style: solid;
}
div.might {
    background-color: #ff9800;
    text-align: left;
    border-right-style: solid;
}
div.progress {
    background-color: #9c27b0;
    text-align: right;
    border-left-style: solid;
}
div.tradition {
    background-color: #8bc34a;
    text-align: left;
    border-right-style: solid;
}
span.weight-300 {
    font-weight: 300;
}
canvas {
    border-color: #444444;
    border-style: solid;
    border-width: 2px;
    border-radius: 8pt;
    display: block;
    margin: 8pt;
    margin-left: auto;
    margin-right: auto;
}
