body {
    background-color: #1e1e1e;
    color: #ffffff;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
    background: #232323;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    text-align: center;
}

h1 {
    color: #ffae00;
    margin-bottom: 16px;
    font-size: 2.2em;
}

h2 {
    color: #ffa600;
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 1.5em;
}

p, ul {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.7;
}

ul {
    list-style-type: square;
    padding-left: 20px;
    text-align: left;
}

a {
    color: #6e00ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8a2be2;
    text-decoration: underline;
}

.language-selection {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#language-select {
    padding: 8px;
    border-radius: 5px;
    background-color: #6e00ff;
    color: #ffffff;
    border: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin-right: 10px;
}

#language-select option {
    background-color: #1e1e1e;
    color: #ffffff;
}

.flag-icon {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #888;
    font-size: 12px;
    text-align: center;
}

footer p {
    margin: 8px 0;
}

@media (max-width: 600px) {
    .container {
        padding: 20px 16px;
        max-width: 95vw;
        margin: 10px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.3em;
    }
    
    body {
        align-items: flex-start;
        padding: 10px;
    }
}
