body {
    font-family: Arial, sans-serif;
    background: #f3f3f3;
    color: #333;
    text-align: center;
    padding: 2em;
}

.ball {
    display: inline-block;
    margin: 5px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    line-height: 45px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.euro-ball {
    background: #f39c12;
}

.countdown {
    font-size: 1.4em;
    margin: 20px 0;
}

a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: bold;
}

.lang-switch {
    text-align: right;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.lang-switch a {
    margin: 0 6px;
    opacity: 0.6;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
}

.lang-switch a:hover,
.lang-switch a[style*="font-weight:bold"] {
    opacity: 1;
    text-decoration: underline;
}

.lang-switch .fi {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin-right: 5px;
}

/* FAQ section */
.faq {
    text-align: left;
    max-width: 800px;
    margin: 3em auto;
    background: #fff;
    border-radius: 12px;
    padding: 2em;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    font-size: 1.1em;
}

.faq h2 {
    margin-bottom: 1.5em;
    font-size: 1.8em;
    text-align: center;
}

.faq details {
    margin-bottom: 1em;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    padding: 1em 1.2em;
    transition: all 0.3s ease;
}

.faq details[open] {
    background: #f0f8ff;
    border-color: #aaa;
}

.faq summary {
    font-weight: bold;
    cursor: pointer;
    font-size: 1.2em;
    margin-bottom: 0.5em;
    outline: none;
}

.faq p {
    margin-top: 1em;
    color: #444;
    line-height: 1.7;
}

/* Progress Bar */
.progress-bar-container {
    width: 100%;
    max-width: 600px;
    background-color: #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    height: 20px;
    margin: 10px auto;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-bar {
    height: 100%;
    background-color: #4caf50;
    transition: width 0.5s ease-in-out;
}

.progress-percent {
    text-align: right;
    font-size: 14px;
    margin-top: 6px;
    color: #333;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}