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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0d5c5c;
    height: 100vh;
    overflow: hidden;
}

.entrance-page {
    width: 100%;
    height: 100vh;
    background-color: #0d5c5c;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cities-img {
    position: absolute;
    width: 90%;
    max-width: 1200px;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.85;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 65%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    margin-top: -280px;
    margin-left: -40px;
}

.logo {
    width: 600px;
    margin-bottom: 5px;
    margin-top: 60px;
}

.tagline {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 0 25px rgba(0,0,0,1), 0 0 50px rgba(0,0,0,0.9);
    order: 1;
}

.get-started {
    color: #c9a84c;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
    text-shadow: 0 0 15px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.5);
    order: 2;
}

.get-started:hover {
    opacity: 0.7;
}
