body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #000c18; /* Deep Abyss Blue */
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,20,40,0) 0%, rgba(0,5,10,1) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    letter-spacing: 12px;
    margin-bottom: 0;
    color: #5f9ea0; /* Moonstone Blue */
    text-shadow: 0 0 20px rgba(95, 158, 160, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 50px;
}

.server-ip {
    background: rgba(95, 158, 160, 0.1);
    border: 1px solid #5f9ea0;
    padding: 15px 30px;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 40px;
}

.server-ip:hover {
    background: rgba(95, 158, 160, 0.3);
    box-shadow: 0 0 15px #5f9ea0;
}

.server-ip span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    text-decoration: none;
    color: white;
    padding: 12px 25px;
    border: 1px solid white;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn:hover {
    background: white;
    color: black;
}

.currency-preview {
    margin-top: 60px;
    font-size: 1.5rem;
    opacity: 0.5;
}

.currency-preview span {
    margin: 0 15px;
}