* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #1E1E1E;
    color: #e6e6e6;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#app-root {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content {
    flex-grow: 1;
    margin-left: 120px;
    margin-top: 130px;
    max-width: 700px;
}

.domain-name {
    font-size: 28px;
    font-weight: 600;
}

.description {
    margin-top: 12px;
    font-size: 16px;
}

/* Verification box */
.verify-box {
    margin-top: 55px;
    width: 430px;
    background: #1A1A1A;
    border: 1px solid #2F2F2F;
    padding: 20px;
    border-radius: 4px;
}

.verify-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.left-area label {
    transition: 0.2s ease;
}

.left-area input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Larger spinner */
.spinner {
    width: 32px;
    height: 32px;
    border: 4px solid #a5a5a5;
    border-top-color: #ff9900;
    border-radius: 50%;
    animation: spin .8s linear infinite;
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.right-area svg {
    display: block;
}

/* Ray ID text */
.ray-big {
    margin-top: 85px;
    font-size: 13px;
    color: #888;
}

/* Footer container */
.footer-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 70px;
}

/* Shorter divider line */
.footer-line {
    width: 65%;
    height: 1px;
    background: #3b3b3b;
    margin-bottom: 12px;
    border-radius: 2px;
}

.footer-info {
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
    user-select: none;
}

.footer-item {
    margin: 0 40px;
    white-space: nowrap;
}

/* Anti-inspect screen */
.devtools-curse {
    position: fixed;
    inset: 0;
    background: #000;
    color: lime;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    font-size: 18px;
    z-index: 999999;
    text-align: center;
}
