.restrict-box {
    background: #0f0f0f; /* dark background */
    border-left: 4px solid #FFD700; /* gold accent */
    padding: 20px;
    margin-top: 24px;
    border-radius: 12px;
    font-size: 16px;
    color: #d1d1d1; /* light gray text */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.restrict-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.restrict-btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.restrict-btn.login {
    background-color: #FFD700; /* gold */
    color: #0f0f0f; /* dark text */
}

.restrict-btn.register {
    background-color: #FFD700;
    color: #0f0f0f;
}

.restrict-btn:hover {
    background-color: #ffdd33;
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(255, 221, 51, 0.6);
}

.premium-label {
    font-size: 0.85em;
    color: #FFD700; /* gold */
    font-weight: bold;
    margin-left: 6px;
}

.premium-glow-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    z-index: 1;
}

.premium-glow-wrapper::before {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border: 3px solid #FFD700;
    border-radius: 16px;
    box-sizing: border-box;
    z-index: -1;
    animation: spinBorder 4s linear infinite;
}

@keyframes spinBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
