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

body {
    font-family: 'Helvetica Now Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    min-height: 100vh;
    background-image: url('../assets/images/home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

.background-gradient {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, #4168D8 0%, #111122 50%);
    filter: blur(460.84px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 80px;
    z-index: 100;
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 73px;
    width: auto;
}

.main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.country-card {
    background: #111122;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 16px;
    padding: 24px 23px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 262px;
    height: 214px;
    opacity: 0;
    transform: scale(0.8);
    animation: cardAppear 0.6s ease-out forwards;
}

.card-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInDown 0.5s ease-out 0.3s forwards;
}

.country-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.country-option {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 12px 48px;
    opacity: 0;
    transform: translateX(-20px);
    align-items: center;
}

.country-option:nth-child(1) {
    animation: slideInLeft 0.5s ease-out 0.6s forwards;
}

.country-option:nth-child(2) {
    animation: slideInLeft 0.5s ease-out 0.8s forwards;
}
.country-option:nth-child(1) span {
    margin-bottom: 2px;
}

.country-option:hover {
    background: #1C1C38;
}

.country-option img {
    width: 28px;
    height: auto;
    display: block;
    border-radius: 10px;
}

@keyframes cardAppear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    body {
        background-attachment: fixed;
        min-height: 100vh;
        overflow: hidden;
    }
    
    .main-content {
        overflow: hidden;
    }
    
    .navbar {
        padding: 60px 10px 10px;
        display: flex;
        justify-content: center;
    }
    
    .logo {
        height: 70px;
    }
    
    .country-card {
        padding: 2rem 1.5rem;
    }
    
}
