/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main content */
main {
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
}

.intro {
    background-color: #1e1e1e;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    text-align: center;
    position: relative;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.intro h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #28b24e;
}

.intro p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #cccccc;
}

.btn-primary {
    display: inline-block;
    background-color: #28b24e;
    color: #121212;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #249945;
}

/* Language switcher */
.lang-switcher {
    position: absolute;
    top: 10px;
    right: 10px;
}

.lang-switcher a {
    color: #28b24e;
    text-decoration: none;
    font-size: 14px;
}

.lang-switcher span {
    font-weight: normal;
}

.lang-switcher .active {
    font-weight: bold;
}

/* Footer */
footer {
    flex-shrink: 0;
    background-color: #121212;
    padding: 20px;
    text-align: center;
    color: #666666;
    font-size: 12px;
    line-height: 1.5;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #666666;
    text-decoration: none;
}

footer a:hover {
    color: #28b24e;
}

.legal-warning {
    font-size: 11px;
    color: #555555;
    margin-top: 20px;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
}