/* Reset */
* {
    box-sizing: border-box;
    cursor: default;
    margin: 0;
    padding: 0;
}

/* Base */
body {
    align-items: center;
    background: #fafafa;
    display: flex;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    justify-content: center;
    line-height: 1.5;
    min-height: 100vh;
    padding: 20px;
}

/* Container */
.bem-container {
    max-width: 450px;
    width: 100%;
}

.bem-container__reloadinfo,
.bem-container__clineinfo {
    text-align: center;
}

.bem-container__reloadinfotext,
.bem-container__clineinfotext {
    color: #757575;
    font-size: 14px;
    font-weight: 400;
}

.bem-container__reloadinfotext {
    padding: 5px;
}

.bem-container__clineinfotext {
    padding: 10px 0;
}

/* Card */
.bem-container__card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px 40px 36px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bem-container__card:hover {
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.12),
        0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Logo */
.bem-container__logo {
    text-align: center;
}

/* Divider */
.bem-divider {
    margin-bottom: 24px;
    position: relative;
    text-align: center;
}

.bem-divider::before {
    background: #e0e0e0;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.bem-divider__info {
    background: #ffffff;
    color: #757575;
    font-size: 14px;
    font-weight: 400;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

/* IP Info */
.bem-ipinfo__noscript {
    display: block;
}

.bem-ipinfo__script {
    display: none;
}

.bem-ipinfo__title {
    font-weight: 800;
    margin: 10px;
    text-align: center;
}

.bem-ipinfo__value {
    cursor: pointer;
    font-weight: 400;
}

.bem-ipinfo__script .bem-ipinfo__title {
    display: none;
}

/* Links */
.bem-container__clinelink {
    color: #EE7D00;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    padding: 5px;
}
