* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #09164fff 0%, #2c0750ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

p {
    color: white;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
}

.container {
    max-width: 600px;
    width: 100%;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-button {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.link-button:active {
    transform: translateY(0);
}

.flag {
    font-size: 32px;
    flex-shrink: 0;
}

.country {
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
    min-width: 80px;
}

.domain {
    color: #667eea;
    font-size: 16px;
    margin-left: auto;
}

/* Responsive design */
@media (max-width: 480px) {
    .link-button {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .domain {
        margin-left: 0;
    }

    .logo {
        max-width: 200px;
    }
}
